diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2003-11-14 06:47:02 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2003-11-14 06:47:02 +0800 |
commit | cac6efa61f999754fb2832b3600c89b3b5f9d96d (patch) | |
tree | 409b9e94da898af91e2d92ad0a851e6cde5f1961 /shell/main.c | |
parent | c4652e9705eca58c35da9ef64349e7032e3ea9c0 (diff) | |
download | gsoc2013-evolution-cac6efa61f999754fb2832b3600c89b3b5f9d96d.tar.gz gsoc2013-evolution-cac6efa61f999754fb2832b3600c89b3b5f9d96d.tar.zst gsoc2013-evolution-cac6efa61f999754fb2832b3600c89b3b5f9d96d.zip |
Remove spurious puts()s.
svn path=/trunk/; revision=23342
Diffstat (limited to 'shell/main.c')
-rw-r--r-- | shell/main.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/shell/main.c b/shell/main.c index d156664ccf..bdc6e21a86 100644 --- a/shell/main.c +++ b/shell/main.c @@ -252,7 +252,6 @@ show_development_warning (GtkWindow *parent) GConfClient *client; char *text; - puts (__FUNCTION__); client = gconf_client_get_default (); if (gconf_client_get_bool (client, "/apps/evolution/shell/skip_warning_dialog", NULL)) { @@ -323,7 +322,6 @@ static void window_map_callback (GtkWidget *widget, void *data) { - puts (__FUNCTION__); g_signal_handlers_disconnect_by_func (widget, G_CALLBACK (window_map_callback), data); show_development_warning (GTK_WINDOW (widget)); @@ -334,7 +332,6 @@ new_window_created_callback (EShell *shell, EShellWindow *window, void *data) { - puts (__FUNCTION__); g_signal_handlers_disconnect_by_func (shell, G_CALLBACK (new_window_created_callback), data); g_signal_connect (window, "map", G_CALLBACK (window_map_callback), NULL); |