aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs/cal-prefs-dialog.c
diff options
context:
space:
mode:
authorHarish Krishnaswamy <kharish@novell.com>2006-01-02 13:46:02 +0800
committerHarish Krishnaswamy <kharish@src.gnome.org>2006-01-02 13:46:02 +0800
commit6d8453bf8d9f8fb50cedf4f8971602261956daa8 (patch)
tree87c1099a2608aabf223bd38c36c15ecec335a5fd /calendar/gui/dialogs/cal-prefs-dialog.c
parentd03003f2289d704dd8842b66481559a58e274a6e (diff)
downloadgsoc2013-evolution-6d8453bf8d9f8fb50cedf4f8971602261956daa8.tar
gsoc2013-evolution-6d8453bf8d9f8fb50cedf4f8971602261956daa8.tar.gz
gsoc2013-evolution-6d8453bf8d9f8fb50cedf4f8971602261956daa8.tar.bz2
gsoc2013-evolution-6d8453bf8d9f8fb50cedf4f8971602261956daa8.tar.lz
gsoc2013-evolution-6d8453bf8d9f8fb50cedf4f8971602261956daa8.tar.xz
gsoc2013-evolution-6d8453bf8d9f8fb50cedf4f8971602261956daa8.tar.zst
gsoc2013-evolution-6d8453bf8d9f8fb50cedf4f8971602261956daa8.zip
Fixes #325468 (critical warning crasher).
2006-01-02 Harish Krishnaswamy <kharish@novell.com> * gui/dialogs/cal-prefs-dialog.c: (show_fb_config): Fixes #325468 (critical warning crasher). svn path=/trunk/; revision=31013
Diffstat (limited to 'calendar/gui/dialogs/cal-prefs-dialog.c')
-rw-r--r--calendar/gui/dialogs/cal-prefs-dialog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/dialogs/cal-prefs-dialog.c b/calendar/gui/dialogs/cal-prefs-dialog.c
index 0960033e41..f88ecd89cd 100644
--- a/calendar/gui/dialogs/cal-prefs-dialog.c
+++ b/calendar/gui/dialogs/cal-prefs-dialog.c
@@ -362,7 +362,7 @@ show_fb_config (CalendarPrefsDialog *prefs)
gchar *template_url;
template_url = calendar_config_get_free_busy_template ();
- gtk_entry_set_text (GTK_ENTRY (prefs->template_url), template_url);
+ gtk_entry_set_text (GTK_ENTRY (prefs->template_url), (template_url ? template_url : ""));
g_free (template_url);
}