]> Dogcows Code - chaz/openbox/blobdiff - util/epist/actions.cc
drop the ""'s from actions' string arguments
[chaz/openbox] / util / epist / actions.cc
index 82e61ae3fdd14854f027700c6f6c1146f3653caf..118719508b85174570a0900f160ef13b312364bd 100644 (file)
@@ -39,13 +39,19 @@ Action::Action(enum ActionType type, KeyCode keycode, unsigned int modifierMask,
 
   for (int i = 0; str_types[i] != noaction; ++i) {
     if (type == str_types[i]) {
-      _stringParam = str;
+      // the first and last characters of the string are quotes, and we need to
+      // get rid of them
+      assert(str.size() >= 2);
+      assert(str[0] == '"');
+      assert(str[str.size() - 1] == '"');
+
+      _stringParam = str.substr(1, str.size() - 2);
       return;
     }
   }
   
   _numberParam = atoi( str.c_str() );
 
-  if (type == changeWorkspace)
-    _numberParam;
+  if (type == changeWorkspace)  // workspace 1 to the user is workspace 0 to us
+    _numberParam--;
 }
This page took 0.024813 seconds and 4 git commands to generate.