diff options
author | Dan Winship <danw@src.gnome.org> | 2003-02-07 03:40:27 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2003-02-07 03:40:27 +0800 |
commit | 999c4567874fb4a3c0fad5027a25b1e9203db602 (patch) | |
tree | c48d703df1f2df408887dd07239badba1fff74c1 | |
parent | be2641bebc06358eb22f32c36b4211a1a1cfecd9 (diff) | |
download | gsoc2013-evolution-999c4567874fb4a3c0fad5027a25b1e9203db602.tar.gz gsoc2013-evolution-999c4567874fb4a3c0fad5027a25b1e9203db602.tar.zst gsoc2013-evolution-999c4567874fb4a3c0fad5027a25b1e9203db602.zip |
show the widget before returning it.
* gui/dialogs/event-page.c (make_timezone_entry): show the widget
before returning it.
svn path=/trunk/; revision=19826
-rw-r--r-- | calendar/ChangeLog | 3 | ||||
-rw-r--r-- | calendar/gui/dialogs/event-page.c | 6 |
2 files changed, 8 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 78ba5002ab..701935382e 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,5 +1,8 @@ 2003-02-06 Dan Winship <danw@ximian.com> + * gui/dialogs/event-page.c (make_timezone_entry): show the widget + before returning it. + * importers/main.c (main): s/PACKAGE/GETTEXT_PACKAGE/ in gettext init diff --git a/calendar/gui/dialogs/event-page.c b/calendar/gui/dialogs/event-page.c index 5cf2024515..20a2b7b1c3 100644 --- a/calendar/gui/dialogs/event-page.c +++ b/calendar/gui/dialogs/event-page.c @@ -1452,5 +1452,9 @@ GtkWidget *make_timezone_entry (void); GtkWidget * make_timezone_entry (void) { - return e_timezone_entry_new (); + GtkWidget *w; + + w = e_timezone_entry_new (); + gtk_widget_show (w); + return w; } |