diff options
-rw-r--r-- | shell/ChangeLog | 7 | ||||
-rw-r--r-- | shell/e-shell-view-menu.c | 4 |
2 files changed, 9 insertions, 2 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 81f7c0e9ec..3a67b16c5e 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,10 @@ +2001-10-05 Jon Trowbridge <trow@ximian.com> + + * e-shell-view-menu.c (command_work_offline): This is a message, + not a warning! + (command_work_online): This is also a message, not a warning! + (I'm feeling very anal today.) + 2001-10-05 Ettore Perazzoli <ettore@ximian.com> * main.c (idle_cb): Do not invoke diff --git a/shell/e-shell-view-menu.c b/shell/e-shell-view-menu.c index 282c3424da..116ab27382 100644 --- a/shell/e-shell-view-menu.c +++ b/shell/e-shell-view-menu.c @@ -487,7 +487,7 @@ command_work_offline (BonoboUIComponent *uih, shell_view = E_SHELL_VIEW (data); shell = e_shell_view_get_shell (shell_view); - g_warning ("Putting the shell offline"); + g_message ("Putting the shell offline"); e_shell_go_offline (shell, shell_view); } @@ -502,7 +502,7 @@ command_work_online (BonoboUIComponent *uih, shell_view = E_SHELL_VIEW (data); shell = e_shell_view_get_shell (shell_view); - g_warning ("Putting the shell online"); + g_message ("Putting the shell online"); e_shell_go_online (shell, shell_view); } |