diff options
author | Suman Manjunath <msuman@src.gnome.org> | 2008-12-08 17:39:03 +0800 |
---|---|---|
committer | Suman Manjunath <msuman@src.gnome.org> | 2008-12-08 17:39:03 +0800 |
commit | 0694086ab958a0ab21448c5afca1e29091686ed6 (patch) | |
tree | b6757da2fdfe5b16df173a70627c618fb4c87c98 /calendar | |
parent | 49988a414f3ff41e5a79e1c855a77525d150cac9 (diff) | |
download | gsoc2013-evolution-0694086ab958a0ab21448c5afca1e29091686ed6.tar.gz gsoc2013-evolution-0694086ab958a0ab21448c5afca1e29091686ed6.tar.zst gsoc2013-evolution-0694086ab958a0ab21448c5afca1e29091686ed6.zip |
Patch from Jennifer Newman <jennifer.newman@tufts.edu>: Fix for bug #555371 (Added print menu option to task, memo and event editors).
svn path=/trunk/; revision=36848
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 7 | ||||
-rw-r--r-- | calendar/gui/dialogs/comp-editor.c | 4 |
2 files changed, 10 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index e28a7ce8ab..c06be2752d 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,10 @@ +2008-12-08 Jennifer Newman <jennifer.newman@tufts.edu> + + ** Fix for bug #555371 + + * gui/dialogs/comp-editor.c: Added print menu option to task, memo and + event editors. + 2008-12-08 Hiroyuki Ikezoe <poincare@ikezoe.net> ** Fix for bug #350725 diff --git a/calendar/gui/dialogs/comp-editor.c b/calendar/gui/dialogs/comp-editor.c index 4067861fc2..518abd055e 100644 --- a/calendar/gui/dialogs/comp-editor.c +++ b/calendar/gui/dialogs/comp-editor.c @@ -138,6 +138,7 @@ static const gchar *ui = " <menubar action='main-menu'>" " <menu action='file-menu'>" " <menuitem action='save'/>" +" <menuitem action='print'/>" " <menuitem action='close'/>" " </menu>" " <menu action='edit-menu'>" @@ -159,6 +160,7 @@ static const gchar *ui = " </menubar>" " <toolbar name='main-toolbar'>" " <toolitem action='save'/>" +" <toolitem action='print'/>" " <toolitem action='close'/>" " <separator/>" " <toolitem action='attach'/>" @@ -1297,7 +1299,7 @@ static GtkActionEntry core_entries[] = { { "print", GTK_STOCK_PRINT, NULL, - NULL, + "<Control>p", NULL, G_CALLBACK (action_print_cb) }, |