summaryrefslogtreecommitdiff
path: root/gtk/gtktextlayout.h
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2002-09-23 19:20:48 +0000
committerOwen Taylor <otaylor@src.gnome.org>2002-09-23 19:20:48 +0000
commitbe19be61b7c7b10a14b3105e0ff48398080b9463 (patch)
treeb028f48c78bb7c7a48094118bafcbbf202bd2b20 /gtk/gtktextlayout.h
parentd4fe39c3f880b58f1e41ed25491116a891718eab (diff)
downloadgtk+-be19be61b7c7b10a14b3105e0ff48398080b9463.tar.gz
Use 'signed int' not 'gint' for signed bitfields. (#93020, Vitaly Tishkov)
Mon Sep 23 14:58:04 2002 Owen Taylor <otaylor@redhat.com> * gtk/gtkhandlebox.h gtk/gtktextbtree.[ch]: Use 'signed int' not 'gint' for signed bitfields. (#93020, Vitaly Tishkov) * gtk/gtktextlayout.h gtk/gtktextbtree.[ch]: Fix some 'gint' bitfields that should have been unsigned.
Diffstat (limited to 'gtk/gtktextlayout.h')
-rw-r--r--gtk/gtktextlayout.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtktextlayout.h b/gtk/gtktextlayout.h
index c794e3b9b7..42126ed73d 100644
--- a/gtk/gtktextlayout.h
+++ b/gtk/gtktextlayout.h
@@ -163,7 +163,7 @@ struct _GtkTextLayout
/* For what GtkTextDirection to draw cursor GTK_TEXT_DIR_NONE -
* means draw both cursors.
*/
- gint cursor_direction : 2;
+ guint cursor_direction : 2;
/* The preedit string and attributes, if any */