diff options
author | Kjartan Maraas <kmaraas@gnome.org> | 2001-03-30 02:16:57 +0800 |
---|---|---|
committer | Kjartan Maraas <kmaraas@src.gnome.org> | 2001-03-30 02:16:57 +0800 |
commit | 69dd62ddd068fb45bd91c13402fa53c18a5f9e3e (patch) | |
tree | b5b833a8c228b69604a6571863466b889cec4a48 /widgets/misc/test-dropdown-button.c | |
parent | c72573f31ba56785b6bbbb5c34326c7b1b734097 (diff) | |
download | gsoc2013-evolution-69dd62ddd068fb45bd91c13402fa53c18a5f9e3e.tar gsoc2013-evolution-69dd62ddd068fb45bd91c13402fa53c18a5f9e3e.tar.gz gsoc2013-evolution-69dd62ddd068fb45bd91c13402fa53c18a5f9e3e.tar.bz2 gsoc2013-evolution-69dd62ddd068fb45bd91c13402fa53c18a5f9e3e.tar.lz gsoc2013-evolution-69dd62ddd068fb45bd91c13402fa53c18a5f9e3e.tar.xz gsoc2013-evolution-69dd62ddd068fb45bd91c13402fa53c18a5f9e3e.tar.zst gsoc2013-evolution-69dd62ddd068fb45bd91c13402fa53c18a5f9e3e.zip |
Replace #include <gtk/gtk.h> Remove #include <gnome.h> Replace #include
2001-03-29 Kjartan Maraas <kmaraas@gnome.org>
* e-dropdown-button.c: Replace #include <gtk/gtk.h>
* e-dropdown-button.h: Remove #include <gnome.h>
* e-filter-bar.c: Replace #include <gtk/gtk.h>
* e-filter-bar.h: Replace #include <gtk/gtk.h>
* e-messagebox.c: Add #includes to count for removed <gnome.h> in
e-messagebox.h:
* e-messagebox.h: Replace #include <gnome.h>
* e-search-bar.c: Replace #include <gnome.h>
* e-search-bar.h: Same here
* test-calendar.c: Remove #include <gnome.h>
* test-dateedit.c: Replace #include <gnome.h>
* test-dropdown-button.c: Same here.
* test-title-bar.c: Same here.
svn path=/trunk/; revision=9018
Diffstat (limited to 'widgets/misc/test-dropdown-button.c')
-rw-r--r-- | widgets/misc/test-dropdown-button.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/widgets/misc/test-dropdown-button.c b/widgets/misc/test-dropdown-button.c index 3acfea3a1c..259e344bcb 100644 --- a/widgets/misc/test-dropdown-button.c +++ b/widgets/misc/test-dropdown-button.c @@ -27,8 +27,15 @@ #include <config.h> #endif -#include <gnome.h> - +#include <stdio.h> +#include <glib.h> +#include <gtk/gtkmain.h> +#include <gtk/gtkmenu.h> +#include <gtk/gtkwindow.h> +#include <libgnomeui/gnome-app.h> +#include <libgnomeui/gnome-app-helper.h> +#include <libgnomeui/gnome-init.h> +#include <libgnomeui/gnome-stock.h> #include "e-dropdown-button.h" |