diff options
author | Owen Taylor <otaylor@redhat.com> | 2001-08-27 15:17:51 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2001-08-27 15:17:51 +0000 |
commit | 807c619d8247be0dfdaadcaaf7a5fd5ea798b057 (patch) | |
tree | b0b2aa979cd8204779fbfe1878ac73d3c7c2739a /docs | |
parent | b5857e558b3c2dd9c930d1c9257fe89edd328cf8 (diff) | |
download | gdk-pixbuf-807c619d8247be0dfdaadcaaf7a5fd5ea798b057.tar.gz |
Use autoconf 2.13/2.50 compat macro.
Sun Aug 26 20:00:00 2001 Owen Taylor <otaylor@redhat.com>
* configure.in acinclude.m4: Use autoconf 2.13/2.50 compat
macro.
(patch from ERDI Gergo <cactus@cactus.rulez.org>, #58920)
* gtk/gtkmenuitem.c (gtk_menu_item_set_right_justified): Change
interface to be a standard setter from gtk_menu_item_right_justify.
(gtk_menu_item_get_right_justified): a getter to go with the setter
* gtk/gtkmenuitem.h: Add a deprecated compat macro for
gtk_menu_item_right_justify.
* demos/gtk-demo/menus.c tests/testgtk.c: Switch to
gtk_menu_item_set_right_justified.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/Changes-2.0.txt | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/docs/Changes-2.0.txt b/docs/Changes-2.0.txt index 7d4ce7620..9b2371f07 100644 --- a/docs/Changes-2.0.txt +++ b/docs/Changes-2.0.txt @@ -443,6 +443,14 @@ Incompatible Changes from GTK+-1.2 to GTK+-2.0: - For NO_WINDOW widgets, if you create windows in your realize() method, you must map then in map() and unmap them in unmap(). +* gtk_widget_set_default_style (), gtk_widget_push_style (), + and gtk_widget_pop_style () have been removed, since they + did not work properly with themes and there were better + alternatives for modifying the appearance of widgets. + + You should generally use gtk_widget_modify_fg/bg/base/text/font + instead. + * gtk_image_new() now takes no arguments and creates an empty GtkImage widget. To create a GtkImage widget from a GdkImage (the least - common usage of GdkImage), use gtk_image_new_from_image.
\ No newline at end of file + common usage of GdkImage), use gtk_image_new_from_image. |