]> Dogcows Code - chaz/openbox/blobdiff - openbox/actions/desktop.c
Remove double newlines.
[chaz/openbox] / openbox / actions / desktop.c
index d939ed511ad5dd938fe92bd9d7da645444173b7c..bc70748ba49ae9eb3184ffc8be24d557f56d9e28 100644 (file)
@@ -89,7 +89,7 @@ static gpointer setup_go_func(ObParseInst *i, xmlDocPtr doc,
         }
         else {
             o->type = ABSOLUTE;
-            o->abs.desktop = parse_int(doc, n) - 1;
+            o->abs.desktop = atoi(s) - 1;
         }
         g_free(s);
     }
@@ -122,8 +122,6 @@ static gboolean run_func(ObActionsData *data, gpointer options)
     Options *o = options;
     guint d;
 
-
-
     switch (o->type) {
     case LAST:
         d = screen_last_desktop;
This page took 0.020182 seconds and 4 git commands to generate.