diff options
author | Kristian Rietveld <kris@gtk.org> | 2003-10-10 17:18:34 +0000 |
---|---|---|
committer | Kristian Rietveld <kristian@src.gnome.org> | 2003-10-10 17:18:34 +0000 |
commit | e6100ecd110ab750644b6311bec304f6e1b55622 (patch) | |
tree | 5e0e740d0e55c4f281ed6682095e4a8935da8141 /gtk/gtkinputdialog.c | |
parent | 7d9c4f6ea3d542d64f6802be9f1426cb699804d0 (diff) | |
download | gdk-pixbuf-e6100ecd110ab750644b6311bec304f6e1b55622.tar.gz |
Deprecate. Ditto.
Fri Oct 10 19:10:12 2003 Kristian Rietveld <kris@gtk.org>
* gtk/gtkcombo.h: Deprecate.
* gtk/gtkoptionmenu.h: Ditto.
* gtk/gtkcombobox.c (gtk_combo_box_size_request),
(gtk_combo_box_size_allocate): Rework, things behave better now. Still
needs some work on requesting enough size when taking the items in
the list into account.
* gtk/gtkfilesel.c: put gtkoptionmenu.h include inside "enable
deprecated" guards.
* gtk/gtkinputdialog.c: ditto.
* gtk/gtkitemfactory.c: ditto.
* gtk/gtkoptionmenu.c: ditto.
* demos/gtk-demo/menus.c: remove the option menu.
* demos/gtk-demo/sizegroup.c: replace the option menus with
GtkComboBox.
* demos/gtk-demo/textview.c: ditto.
(A general GtkComboBox demo will be added later on).
Diffstat (limited to 'gtk/gtkinputdialog.c')
-rw-r--r-- | gtk/gtkinputdialog.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gtk/gtkinputdialog.c b/gtk/gtkinputdialog.c index 1e59f643e..cbbda5ca9 100644 --- a/gtk/gtkinputdialog.c +++ b/gtk/gtkinputdialog.c @@ -47,12 +47,15 @@ #include "gtkmenu.h" #include "gtkmenuitem.h" #include "gtknotebook.h" -#include "gtkoptionmenu.h" #include "gtkscrolledwindow.h" #include "gtkstock.h" #include "gtktable.h" #include "gtkvbox.h" +#undef GTK_DISABLE_DEPRECATED +#include "gtkoptionmenu.h" +#define GTK_DISABLE_DEPRECATED + #include "gtkintl.h" typedef struct _GtkInputDialogPrivate GtkInputDialogPrivate; |