diff options
author | Hans Petter Jansson <hpj@ximian.com> | 2003-01-24 13:03:54 +0800 |
---|---|---|
committer | Hans Petter <hansp@src.gnome.org> | 2003-01-24 13:03:54 +0800 |
commit | 2c11fe24f24e6ef4c016a113e8f5a0c2c73d81d9 (patch) | |
tree | 34611a119073b6ed8217e7f58bb7ffdcbf8a65b3 /calendar | |
parent | 09e6aacd2d5af2573cd9640e20df02067231b697 (diff) | |
download | gsoc2013-evolution-2c11fe24f24e6ef4c016a113e8f5a0c2c73d81d9.tar.gz gsoc2013-evolution-2c11fe24f24e6ef4c016a113e8f5a0c2c73d81d9.tar.zst gsoc2013-evolution-2c11fe24f24e6ef4c016a113e8f5a0c2c73d81d9.zip |
Add a terminating NULL to the concatenation.
2003-01-23 Hans Petter Jansson <hpj@ximian.com>
* gui/dialogs/comp-editor.c (comp_editor_merge_ui): Add a terminating
NULL to the concatenation.
svn path=/trunk/; revision=19612
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 3 | ||||
-rw-r--r-- | calendar/gui/dialogs/comp-editor.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index b93e405262..9d75e2cda6 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -17,6 +17,9 @@ * gui/e-meeting-time-sel.c (e_meeting_time_selector_construct): Add a FIXME comment to think about. + * gui/dialogs/comp-editor.c (comp_editor_merge_ui): Add a terminating + NULL to the concatenation. + 2003-01-23 Hans Petter Jansson <hpj@ximian.com> Fixes some trivial, but distracting, warnings. diff --git a/calendar/gui/dialogs/comp-editor.c b/calendar/gui/dialogs/comp-editor.c index 24fdf3396f..4b2e4fa882 100644 --- a/calendar/gui/dialogs/comp-editor.c +++ b/calendar/gui/dialogs/comp-editor.c @@ -1101,7 +1101,7 @@ comp_editor_merge_ui (CompEditor *editor, priv = editor->priv; - path = g_strconcat (EVOLUTION_UIDIR "/", filename); + path = g_strconcat (EVOLUTION_UIDIR "/", filename, NULL); bonobo_ui_util_set_ui (priv->uic, EVOLUTION_DATADIR, path, "evolution-calendar", NULL); bonobo_ui_component_add_verb_list_with_data (priv->uic, verbs, editor); |