]> Dogcows Code - chaz/openbox/blobdiff - util/epist/actions.cc
make the execute process better
[chaz/openbox] / util / epist / actions.cc
index 493d02154ac5c685588fe7bb7fca7cf2b11e6cc8..35ddbb80976c8a962d35ea11ac233cbbc6a48c6a 100644 (file)
 #include "actions.hh"
 
 Action::Action(enum ActionType type, KeyCode keycode, unsigned int modifierMask,
-               int num): _type(type), _keycode(keycode),
-                         _modifierMask(modifierMask), _numberParam(num)
+               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.021131 seconds and 4 git commands to generate.