Remove debugging messages

2001-07-26  Bradford Hovinen  <hovinen@ximian.com>

	* capplet-dir.c (capplet_activate): Remove debugging messages
This commit is contained in:
Bradford Hovinen 2001-07-27 01:25:15 +00:00 committed by Bradford Hovinen (Gdict maintainer)
parent 4af8d8fa92
commit 5fd3e851db
2 changed files with 2 additions and 3 deletions

View file

@ -1,5 +1,7 @@
2001-07-26 Bradford Hovinen <hovinen@ximian.com>
* capplet-dir.c (capplet_activate): Remove debugging messages
* capplet-dir.h (struct _Capplet): Add flag launching
* capplet-dir.c (capplet_new): Initialize capplet->launching

View file

@ -199,7 +199,6 @@ capplet_dir_entry_shutdown (CappletDirEntry *entry)
static gint
capplet_reset_cb (Capplet *capplet)
{
g_message ("%s: Enter", __FUNCTION__);
capplet->launching = FALSE;
return FALSE;
}
@ -210,10 +209,8 @@ capplet_activate (Capplet *capplet)
GnomeDesktopEntry *entry;
if (capplet->launching) {
g_message ("Capplet already running");
return;
} else {
g_message ("Capplet not already running; launching");
capplet->launching = TRUE;
gtk_idle_add ((GtkFunction) capplet_reset_cb, capplet);
}