Skip to content
Snippets Groups Projects
Commit 9dc8058c authored by Olivier Fourdan's avatar Olivier Fourdan :tools:
Browse files

Remove debug message

parent dbe4b0cf
No related branches found
No related tags found
No related merge requests found
......@@ -94,18 +94,12 @@ clientCycleEventFilter (XEvent * xevent, gpointer data)
{
case DestroyNotify:
if ((removed = myScreenGetClientFromWindow (screen_info, ((XDestroyWindowEvent *) xevent)->window, SEARCH_WINDOW)) == NULL)
{
/* No need to go any further */
break;
}
break; /* No need to go any further */
gone |= (c == removed);
/* Walk through */
case UnmapNotify:
if (!removed && (removed = myScreenGetClientFromWindow (screen_info, ((XUnmapEvent *) xevent)->window, SEARCH_WINDOW)) == NULL)
{
/* No need to go any further */
break;
}
break; /* No need to go any further */
gone |= (c == removed);
c = tabwinRemoveClient(passdata->tabwin, removed);
passdata->c = c;
......
......@@ -344,7 +344,6 @@ getBoolValue (const gchar *option, Settings *rc)
{
if (rc[i].value == NULL)
return FALSE;
g_print ("Reading option %s\n", option);
g_return_val_if_fail(G_VALUE_TYPE(rc[i].value) == G_TYPE_BOOLEAN, FALSE);
return g_value_get_boolean(rc[i].value);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment