diff options
Diffstat (limited to 'calendar/gui/e-timezone-entry.c')
-rw-r--r-- | calendar/gui/e-timezone-entry.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/calendar/gui/e-timezone-entry.c b/calendar/gui/e-timezone-entry.c index 7f5c36600b..89116212f6 100644 --- a/calendar/gui/e-timezone-entry.c +++ b/calendar/gui/e-timezone-entry.c @@ -309,12 +309,11 @@ e_timezone_entry_get_display_name (ETimezoneEntry *tentry, /* We check if it is one of our builtin timezone names, in which case we call gettext to translate it. If it isn't a builtin timezone - name, we need to convert it to the GTK+ encoding. */ + name, we don't. */ if (icaltimezone_get_builtin_timezone (display_name)) { return g_strdup (_(display_name)); } else { - return e_utf8_to_gtk_string (GTK_WIDGET (tentry), - display_name); + return g_strdup (display_name); } } |