diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-05-16 10:12:49 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-05-16 10:12:49 +0800 |
commit | e30ad1b088826a52a91837c90e19ff1c449057fd (patch) | |
tree | 58518a939b926b7858d1d3583587b7d2fb433b99 /shell/e-shell-view-menu.c | |
parent | 1d204483a3fcd79f41efb5d10dade8ce473d971b (diff) | |
download | gsoc2013-evolution-e30ad1b088826a52a91837c90e19ff1c449057fd.tar gsoc2013-evolution-e30ad1b088826a52a91837c90e19ff1c449057fd.tar.gz gsoc2013-evolution-e30ad1b088826a52a91837c90e19ff1c449057fd.tar.bz2 gsoc2013-evolution-e30ad1b088826a52a91837c90e19ff1c449057fd.tar.lz gsoc2013-evolution-e30ad1b088826a52a91837c90e19ff1c449057fd.tar.xz gsoc2013-evolution-e30ad1b088826a52a91837c90e19ff1c449057fd.tar.zst gsoc2013-evolution-e30ad1b088826a52a91837c90e19ff1c449057fd.zip |
Some demeeksifying indentation changes.
svn path=/trunk/; revision=9832
Diffstat (limited to 'shell/e-shell-view-menu.c')
-rw-r--r-- | shell/e-shell-view-menu.c | 41 |
1 files changed, 16 insertions, 25 deletions
diff --git a/shell/e-shell-view-menu.c b/shell/e-shell-view-menu.c index a05348d508..1d814db214 100644 --- a/shell/e-shell-view-menu.c +++ b/shell/e-shell-view-menu.c @@ -467,9 +467,8 @@ command_new_mail_message (BonoboUIComponent *uih, Bonobo_Unknown object; CORBA_exception_init (&ev); - object = bonobo_get_object ( - "OAFIID:GNOME_Evolution_Mail_Composer!visible=1", - "Bonobo/Unknown", &ev); + object = bonobo_get_object ("OAFIID:GNOME_Evolution_Mail_Composer!visible=1", + "Bonobo/Unknown", &ev); CORBA_exception_free (&ev); } @@ -527,21 +526,17 @@ static void menu_do_misc (BonoboUIComponent *component, EShellView *shell_view) { - bonobo_ui_component_add_listener ( - component, "ViewShortcutBar", - command_toggle_shortcut_bar, shell_view); - bonobo_ui_component_add_listener ( - component, "ViewFolderBar", - command_toggle_folder_bar, shell_view); - bonobo_ui_component_add_verb ( - component, "HelpSubmitBug", - (BonoboUIVerbFn) command_run_bugbuddy, shell_view); - bonobo_ui_component_add_verb ( - component, "HelpAbout", - (BonoboUIVerbFn) command_about_box, shell_view); - bonobo_ui_component_add_verb ( - component, "DebugDumpXml", - (BonoboUIVerbFn) command_xml_dump, shell_view); + bonobo_ui_component_add_listener (component, "ViewShortcutBar", + command_toggle_shortcut_bar, shell_view); + bonobo_ui_component_add_listener (component, "ViewFolderBar", + command_toggle_folder_bar, shell_view); + + bonobo_ui_component_add_verb (component, "HelpSubmitBug", + (BonoboUIVerbFn) command_run_bugbuddy, shell_view); + bonobo_ui_component_add_verb (component, "HelpAbout", + (BonoboUIVerbFn) command_about_box, shell_view); + bonobo_ui_component_add_verb (component, "DebugDumpXml", + (BonoboUIVerbFn) command_xml_dump, shell_view); } @@ -625,14 +620,10 @@ e_shell_view_menu_setup (EShellView *shell_view) uic = e_shell_view_get_bonobo_ui_component (shell_view); shell = e_shell_view_get_shell (shell_view); - bonobo_ui_component_add_verb_list_with_data ( - uic, file_verbs, shell_view); + bonobo_ui_component_add_verb_list_with_data (uic, file_verbs, shell_view); + bonobo_ui_component_add_verb_list_with_data (uic, new_verbs, shell_view); - bonobo_ui_component_add_verb_list_with_data ( - uic, new_verbs, shell_view); - - bonobo_ui_component_add_verb_list ( - uic, help_verbs); + bonobo_ui_component_add_verb_list (uic, help_verbs); menu_do_misc (uic, shell_view); |