summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Janik <timj@src.gnome.org>1998-11-28 02:07:44 +0000
committerTim Janik <timj@src.gnome.org>1998-11-28 02:07:44 +0000
commit33347533ecca414f9de3dbc95265f8d4470aebcd (patch)
tree51a25c41f2ebfa9a68eaec6db8561918b722c40d
parent58af2b56bf681998479e347f2de9daf4ff73f726 (diff)
downloadgdk-pixbuf-33347533ecca414f9de3dbc95265f8d4470aebcd.tar.gz
GTK_BASIC and freeze/thaw explanaition
-rw-r--r--docs/Changes-1.2.txt15
1 files changed, 15 insertions, 0 deletions
diff --git a/docs/Changes-1.2.txt b/docs/Changes-1.2.txt
index 83312b3dc..7b6e529ec 100644
--- a/docs/Changes-1.2.txt
+++ b/docs/Changes-1.2.txt
@@ -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);