]> Pileus Git - ~andy/gtk/commitdiff
GTK_BASIC and freeze/thaw explanaition
authorTim Janik <timj@src.gnome.org>
Sat, 28 Nov 1998 02:07:44 +0000 (02:07 +0000)
committerTim Janik <timj@src.gnome.org>
Sat, 28 Nov 1998 02:07:44 +0000 (02:07 +0000)
docs/Changes-1.2.txt

index 83312b3dcdb840ce3ab7c10a080c6137dc982505..7b6e529ecc5c6fe53156407d4092f113a0f15ff4 100644 (file)
@@ -84,4 +84,19 @@ Incompatible Changes from GTK+-1.0 to GTK+-1.2:
   Window. The scrollbar policy is set on the scrolled window with
   gtk_scrolled_window_set_policy() and not on the child widgets
   (e.g. GtkCList's gtk_clist_set_policy() was removed).
+
+* the GTK_BASIC flag got removed, and with it the corresponding
+  macro and function GTK_WIDGET_BASIC() and gtk_widget_basic().
   
+* all freeze/thaw methods in gtk work in an incremental way now.
+  code portions like:
+  gboolean frozen;
+  frozen = GTK_CLIST_FROZEN (clist);
+  gtk_clist_freeze (clist);
+  [...]
+  if (!frozen)
+    gtk_clist_thaw (clist);
+  will not work anymore, they have to be modified to simply:
+  gtk_clist_freeze (clist);
+  [...]
+  gtk_clist_thaw (clist);