diff options
author | Tor Lillqvist <tml@novell.com> | 2005-11-26 10:31:52 +0800 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2005-11-26 10:31:52 +0800 |
commit | e7defa25a587dfaa160211ce0e2941c044560b5a (patch) | |
tree | 92e5a8b5ffb7010a28bced8e3eb9726411f27c81 /calendar/gui/memos-control.c | |
parent | ae89d959aab24359c730375cff664ac3b44cc953 (diff) | |
download | gsoc2013-evolution-e7defa25a587dfaa160211ce0e2941c044560b5a.tar.gz gsoc2013-evolution-e7defa25a587dfaa160211ce0e2941c044560b5a.tar.zst gsoc2013-evolution-e7defa25a587dfaa160211ce0e2941c044560b5a.zip |
gui/calendar-commands.c gui/e-cal-list-view.c gui/e-calendar-table.c
2005-11-26 Tor Lillqvist <tml@novell.com>
* gui/calendar-commands.c
* gui/e-cal-list-view.c
* gui/e-calendar-table.c
* gui/e-memo-table.c
* gui/e-memos.c
* gui/e-tasks.c
* gui/gnome-cal.c
* gui/goto.c
* gui/memos-control.c
* gui/tasks-control.c
* gui/alarm-notify/alarm-notify-dialog.c
* gui/alarm-notify/notify-main.c
* gui/dialogs/alarm-dialog.c
* gui/dialogs/alarm-list-dialog.c
* gui/dialogs/cal-attachment.c
* gui/dialogs/cal-prefs-dialog.c
* gui/dialogs/comp-editor.c
* gui/dialogs/e-delegate-dialog.c
* gui/dialogs/event-editor.c
* gui/dialogs/meeting-page.c
* gui/dialogs/memo-page.c
* gui/dialogs/recurrence-page.c
* gui/dialogs/schedule-page.c
* gui/dialogs/task-details-page.c
* gui/dialogs/task-page.c
* gui/dialogs/url-editor-dialog.c: Include e-util-private.h to get
redefinition of compile-time pathnames as calls to functions on
Windows. Construct the pathnames of files and directories under
the installation prefix at run-time to enable install-anywhere on
Windows. No effect on functionality on Unix.
svn path=/trunk/; revision=30679
Diffstat (limited to 'calendar/gui/memos-control.c')
-rw-r--r-- | calendar/gui/memos-control.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/calendar/gui/memos-control.c b/calendar/gui/memos-control.c index 040865aeaf..213e3affb2 100644 --- a/calendar/gui/memos-control.c +++ b/calendar/gui/memos-control.c @@ -46,6 +46,7 @@ #include <bonobo/bonobo-ui-util.h> #include <e-util/e-dialog-utils.h> #include <e-util/e-print.h> +#include <e-util/e-util-private.h> #include "calendar-config.h" #include "e-memos.h" @@ -197,6 +198,7 @@ memos_control_activate (BonoboControl *control, EMemos *memos) int n_selected; EMemoTable *cal_table; ETable *etable; + char *xmlfile; uic = bonobo_control_get_ui_component (control); g_assert (uic != NULL); @@ -211,10 +213,14 @@ memos_control_activate (BonoboControl *control, EMemos *memos) bonobo_ui_component_freeze (uic, NULL); + xmlfile = g_build_filename (EVOLUTION_UIDIR, + "evolution-memos.xml", + NULL); bonobo_ui_util_set_ui (uic, PREFIX, - EVOLUTION_UIDIR "/evolution-memos.xml", + xmlfile, "evolution-memos", NULL); + g_free (xmlfile); e_memos_setup_view_menus (memos, uic); |