diff options
author | Ted Gould <ted@gould.cx> | 2011-09-15 10:11:23 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-09-15 10:11:23 -0500 |
commit | 34a42266114d26f09a7470706cc43196ebe8b302 (patch) | |
tree | d05de54865c95284d29924031d1db09582feb3b9 /src/timezone-completion.h | |
parent | 8f8de9ac5d3a35a21606335aa23ceccca6f2a223 (diff) | |
parent | 59a60d1e418b2ad975a58890e9e925f5a6f6e013 (diff) | |
download | ayatana-indicator-datetime-34a42266114d26f09a7470706cc43196ebe8b302.tar.gz ayatana-indicator-datetime-34a42266114d26f09a7470706cc43196ebe8b302.tar.bz2 ayatana-indicator-datetime-34a42266114d26f09a7470706cc43196ebe8b302.zip |
* New upstream release.
* Set default timezone on events without (LP: #837359)
* Update docs to specify correct custom formats (LP: #775113)
* Use GNOME wall clock interface for time (LP: #837440)
* Remove add event when using greeter (LP: #836521)
* Fix gettext domain for builder files (LP: #845473)
* Update date correctly when opening menu (LP: #793450)
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); |