diff options
author | Jon Trowbridge <trow@ximian.com> | 2001-10-06 04:46:39 +0800 |
---|---|---|
committer | Jon Trowbridge <trow@src.gnome.org> | 2001-10-06 04:46:39 +0800 |
commit | 1b0b47301057e96a711098823aa58438b5cbb69f (patch) | |
tree | 2374de95c1cc9157b384b20b511b504b258572b1 | |
parent | c0672f92d1c0ca7fa0637074da13cac968786b09 (diff) | |
download | gsoc2013-evolution-1b0b47301057e96a711098823aa58438b5cbb69f.tar gsoc2013-evolution-1b0b47301057e96a711098823aa58438b5cbb69f.tar.gz gsoc2013-evolution-1b0b47301057e96a711098823aa58438b5cbb69f.tar.bz2 gsoc2013-evolution-1b0b47301057e96a711098823aa58438b5cbb69f.tar.lz gsoc2013-evolution-1b0b47301057e96a711098823aa58438b5cbb69f.tar.xz gsoc2013-evolution-1b0b47301057e96a711098823aa58438b5cbb69f.tar.zst gsoc2013-evolution-1b0b47301057e96a711098823aa58438b5cbb69f.zip |
This is a message, not a warning! (command_work_online): This is also a
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.)
svn path=/trunk/; revision=13467
-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); } |