aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--calendar/ChangeLog3
-rw-r--r--calendar/gui/dialogs/event-page.c6
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;
}