diff options
author | Ted Gould <ted@gould.cx> | 2011-09-15 10:07:23 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-09-15 10:07:23 -0500 |
commit | 59a60d1e418b2ad975a58890e9e925f5a6f6e013 (patch) | |
tree | a68d772770adc264ce844a7061a3ee7c6120d3be /src/timezone-completion.h | |
parent | 70ef2f0a626ffbb05b85874398ca2e7ce9058745 (diff) | |
parent | d6580b428dacb69690def235fbdee1ed00d95b5f (diff) | |
download | ayatana-indicator-datetime-59a60d1e418b2ad975a58890e9e925f5a6f6e013.tar.gz ayatana-indicator-datetime-59a60d1e418b2ad975a58890e9e925f5a6f6e013.tar.bz2 ayatana-indicator-datetime-59a60d1e418b2ad975a58890e9e925f5a6f6e013.zip |
Import upstream version 0.2.94
Diffstat (limited to 'src/timezone-completion.h')
-rw-r--r-- | src/timezone-completion.h | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/src/timezone-completion.h b/src/timezone-completion.h index fdfb234..1592d79 100644 --- a/src/timezone-completion.h +++ b/src/timezone-completion.h @@ -34,15 +34,18 @@ G_BEGIN_DECLS #define IS_TIMEZONE_COMPLETION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TIMEZONE_COMPLETION_TYPE)) #define TIMEZONE_COMPLETION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TIMEZONE_COMPLETION_TYPE, TimezoneCompletionClass)) -typedef struct _TimezoneCompletion TimezoneCompletion; -typedef struct _TimezoneCompletionClass TimezoneCompletionClass; - -struct _TimezoneCompletionClass { - GtkEntryCompletionClass parent_class; -}; +typedef struct _TimezoneCompletion TimezoneCompletion; +typedef struct _TimezoneCompletionPrivate TimezoneCompletionPrivate; +typedef struct _TimezoneCompletionClass TimezoneCompletionClass; struct _TimezoneCompletion { GtkEntryCompletion parent; + + TimezoneCompletionPrivate *priv; +}; + +struct _TimezoneCompletionClass { + GtkEntryCompletionClass parent_class; }; #define TIMEZONE_COMPLETION_ZONE 0 @@ -53,7 +56,7 @@ struct _TimezoneCompletion { #define TIMEZONE_COMPLETION_LATITUDE 5 #define TIMEZONE_COMPLETION_LAST 6 -GType timezone_completion_get_type (void); +GType timezone_completion_get_type (void) G_GNUC_CONST; TimezoneCompletion * timezone_completion_new (); void timezone_completion_watch_entry (TimezoneCompletion * completion, GtkEntry * entry); |