]> Dogcows Code - chaz/openbox/blobdiff - util/epist/actions.hh
build the yacc/lex stuff
[chaz/openbox] / util / epist / actions.hh
index 25f1e9685d220fd4a43b72148167ad7542646a20..8a7385e11b1e5b415174f4c57eb32e8d96add72c 100644 (file)
@@ -93,8 +93,8 @@ private:
   const KeyCode _keycode;
   const unsigned int _modifierMask;
 
-  const int _numberParam;
-  const std::string _stringParam;
+  int _numberParam;
+  std::string _stringParam;
 public:
   inline enum ActionType type() const { return _type;}
   inline const KeyCode keycode() const { return _keycode; }
@@ -103,9 +103,7 @@ public:
   inline const std::string &string() const { return _stringParam; }
 
   Action(enum ActionType type, KeyCode keycode, unsigned int modifierMask,
-         int number = 0);
-  Action(enum ActionType type, KeyCode keycode, unsigned int modifierMask,
-         const std::string &str);
+         const std::string &str = "");
 };
   
 typedef std::list<Action> ActionList;
This page took 0.027525 seconds and 4 git commands to generate.