all repos — openbox @ ba58f65d00d864f75b1f0cdfd2b60ec8882d2594

openbox fork - make it a bit more like ryudo

added contructor for the actions
Scott Moynes smoynes@nexus.carleton.ca
commit

ba58f65d00d864f75b1f0cdfd2b60ec8882d2594

parent

a0e50e15b507f1f8752bd7858c9e758265a34fc4

1 files changed, 5 insertions(+), 0 deletions(-)

jump to
A util/epist/actions.cc

@@ -0,0 +1,5 @@

+#include "actions.hh" + +Action::Action(enum ActionType type, KeyCode keycode, int modifierMask): + _type(type), _keycode(keycode), _modifierMask(modifierMask) +{ }