aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-pilot-settings.h
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2003-01-26 12:04:52 +0800
committerChris Toshok <toshok@src.gnome.org>2003-01-26 12:04:52 +0800
commit9d51279acef224bb3087d8e0148ff4b8e9363303 (patch)
tree379c0ca33cd89d764e3e7b689777aa35c12d13a6 /e-util/e-pilot-settings.h
parent3cf26e43e21a5c9c551332a1c687a157fbcd3e3c (diff)
downloadgsoc2013-evolution-9d51279acef224bb3087d8e0148ff4b8e9363303.tar
gsoc2013-evolution-9d51279acef224bb3087d8e0148ff4b8e9363303.tar.gz
gsoc2013-evolution-9d51279acef224bb3087d8e0148ff4b8e9363303.tar.bz2
gsoc2013-evolution-9d51279acef224bb3087d8e0148ff4b8e9363303.tar.lz
gsoc2013-evolution-9d51279acef224bb3087d8e0148ff4b8e9363303.tar.xz
gsoc2013-evolution-9d51279acef224bb3087d8e0148ff4b8e9363303.tar.zst
gsoc2013-evolution-9d51279acef224bb3087d8e0148ff4b8e9363303.zip
GObjectify this.
2003-01-25 Chris Toshok <toshok@ximian.com> * e-pilot-settings.[ch]: GObjectify this. svn path=/trunk/; revision=19629
Diffstat (limited to 'e-util/e-pilot-settings.h')
-rw-r--r--e-util/e-pilot-settings.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/e-util/e-pilot-settings.h b/e-util/e-pilot-settings.h
index 295977c406..908f9e1836 100644
--- a/e-util/e-pilot-settings.h
+++ b/e-util/e-pilot-settings.h
@@ -28,7 +28,7 @@
#include <config.h>
#endif
-#include <gnome.h>
+#include <gtk/gtk.h>
#ifdef __cplusplus
extern "C" {
@@ -36,10 +36,10 @@ extern "C" {
#endif /* __cplusplus */
#define E_TYPE_PILOT_SETTINGS (e_pilot_settings_get_type ())
-#define E_PILOT_SETTINGS(obj) (GTK_CHECK_CAST ((obj), E_TYPE_PILOT_SETTINGS, EPilotSettings))
-#define E_PILOT_SETTINGS_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), E_TYPE_PILOT_SETTINGS, EPilotSettingsClass))
-#define E_IS_PILOT_SETTINGS(obj) (GTK_CHECK_TYPE ((obj), E_TYPE_PILOT_SETTINGS))
-#define E_IS_PILOT_SETTINGS_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((obj), E_TYPE_PILOT_SETTINGS))
+#define E_PILOT_SETTINGS(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), E_TYPE_PILOT_SETTINGS, EPilotSettings))
+#define E_PILOT_SETTINGS_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), E_TYPE_PILOT_SETTINGS, EPilotSettingsClass))
+#define E_IS_PILOT_SETTINGS(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), E_TYPE_PILOT_SETTINGS))
+#define E_IS_PILOT_SETTINGS_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((obj), E_TYPE_PILOT_SETTINGS))
typedef struct _EPilotSettings EPilotSettings;
@@ -60,7 +60,7 @@ struct _EPilotSettingsClass {
};
-GtkType e_pilot_settings_get_type (void);
+GType e_pilot_settings_get_type (void);
GtkWidget *e_pilot_settings_new (void);
gboolean e_pilot_settings_get_secret (EPilotSettings *ps);