diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-06-19 03:26:21 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-06-19 03:26:21 +0800 |
commit | 547e123d2777bd3beba36e74e018efb590ed44d4 (patch) | |
tree | 447712a20cff8bc89e6d6c1d16f0d99b9c1122f5 /e-util/e-util-labels.h | |
parent | 67159043da2de9df576f6a4eaa245e0c3926f004 (diff) | |
download | gsoc2013-evolution-547e123d2777bd3beba36e74e018efb590ed44d4.tar gsoc2013-evolution-547e123d2777bd3beba36e74e018efb590ed44d4.tar.gz gsoc2013-evolution-547e123d2777bd3beba36e74e018efb590ed44d4.tar.bz2 gsoc2013-evolution-547e123d2777bd3beba36e74e018efb590ed44d4.tar.lz gsoc2013-evolution-547e123d2777bd3beba36e74e018efb590ed44d4.tar.xz gsoc2013-evolution-547e123d2777bd3beba36e74e018efb590ed44d4.tar.zst gsoc2013-evolution-547e123d2777bd3beba36e74e018efb590ed44d4.zip |
Stop abusing forward declarations.
Diffstat (limited to 'e-util/e-util-labels.h')
-rw-r--r-- | e-util/e-util-labels.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/e-util/e-util-labels.h b/e-util/e-util-labels.h index 16d67f11ef..f0f3ae3bfe 100644 --- a/e-util/e-util-labels.h +++ b/e-util/e-util-labels.h @@ -22,9 +22,7 @@ #define _E_UTIL_LABELS_H #include <gtk/gtk.h> - -struct _GtkWindow; -struct _GConfClient; +#include <gconf/gconf-client.h> typedef struct { gchar *tag; @@ -38,7 +36,7 @@ GSList * e_util_labels_parse (struct _GConfClient *client); void e_util_labels_free (GSList *labels); gchar * e_util_labels_add (const gchar *name, const GdkColor *color); -gchar * e_util_labels_add_with_dlg (struct _GtkWindow *parent, const gchar *tag); +gchar * e_util_labels_add_with_dlg (GtkWindow *parent, const gchar *tag); gboolean e_util_labels_remove (const gchar *tag); gboolean e_util_labels_set_data (const gchar *tag, const gchar *name, const GdkColor *color); |