]> Dogcows Code - chaz/openbox/blobdiff - util/epist/actions.cc
make the execute process better
[chaz/openbox] / util / epist / actions.cc
index d4beaacb7df62aa9d53ca866ae8a2330c0093e94..35ddbb80976c8a962d35ea11ac233cbbc6a48c6a 100644 (file)
 
 #include "actions.hh"
 
-Action::Action(enum ActionType type, KeyCode keycode, int modifierMask):
-  _type(type), _keycode(keycode), _modifierMask(modifierMask)
+Action::Action(enum ActionType type, KeyCode keycode, unsigned int modifierMask,
+               int num)
+  : _type(type), _keycode(keycode),
+    _modifierMask(modifierMask), _numberParam(num)
+{ }
+
+Action::Action(enum ActionType type, KeyCode keycode, unsigned int modifierMask,
+               const std::string &str)
+  : _type(type), _keycode(keycode),
+    _modifierMask(modifierMask), _stringParam(str)
 { }
This page took 0.01953 seconds and 4 git commands to generate.