Miscellaneous portability fixes.

-Yosh
This commit is contained in:
Manish Singh
1998-01-02 03:36:27 +00:00
parent 26c35927f7
commit 92610dafdb
13 changed files with 46 additions and 17 deletions

View File

@ -43,16 +43,16 @@ struct _GtkEntry
GdkWindow *text_area;
gchar *text;
guint16 text_size;
guint16 text_length;
gint16 current_pos;
gint16 selection_start_pos;
gint16 selection_end_pos;
gint16 scroll_offset;
gboolean have_selection : 1;
gboolean visible : 1;
guint32 timer;
GdkIC ic;
guint16 text_size;
guint16 text_length;
gint16 current_pos;
gint16 selection_start_pos;
gint16 selection_end_pos;
gint16 scroll_offset;
guint have_selection : 1;
guint visible : 1;
guint32 timer;
GdkIC ic;
gchar *clipboard_text;
};