diff options
author | Manish Singh <yosh@src.gnome.org> | 1998-01-08 01:58:39 +0000 |
---|---|---|
committer | Manish Singh <yosh@src.gnome.org> | 1998-01-08 01:58:39 +0000 |
commit | 4ccc005197e8cf1ecdd1b32a68e8a346a5f164db (patch) | |
tree | 21e12407d23a2f9062d1e5ae1818992c23a55554 /glib | |
parent | 52d5af4d7e0a37d64678ed4afe5a51ce5cf66d2d (diff) | |
download | gtk+-4ccc005197e8cf1ecdd1b32a68e8a346a5f164db.tar.gz |
applied patch to use a backing pixmap for drawing in GtkEntry, which removes
the bad flickering. (gtk-wille-980106-0)
-Yosh
Diffstat (limited to 'glib')
-rw-r--r-- | glib/glib.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/glib/glib.h b/glib/glib.h index c77ccc3d7d..b07ea11375 100644 --- a/glib/glib.h +++ b/glib/glib.h @@ -397,9 +397,10 @@ GList* g_list_prepend (GList *list, GList* g_list_insert (GList *list, gpointer data, gint position); -GList* g_list_insert_sorted (GList *list, - gpointer data, - GCompareFunc func); +GList* g_list_insert_sorted + (GList *list, + gpointer data, + GCompareFunc func); GList* g_list_concat (GList *list1, GList *list2); GList* g_list_remove (GList *list, @@ -433,9 +434,10 @@ GSList* g_slist_prepend (GSList *list, GSList* g_slist_insert (GSList *list, gpointer data, gint position); -GSList* g_slist_insert_sorted (GSList *list, - gpointer data, - GCompareFunc func); +GSList* g_slist_insert_sorted + (GSList *list, + gpointer data, + GCompareFunc func); GSList* g_slist_concat (GSList *list1, GSList *list2); GSList* g_slist_remove (GSList *list, |