all repos — openbox @ a939bb6e41772ffd4fe75f0c73ae79db237ca979

openbox fork - make it a bit more like ryudo

properly scope thse stl stuff please!
Dana Jansens danakj@orodu.net
commit

a939bb6e41772ffd4fe75f0c73ae79db237ca979

parent

be77122bee3300e982ff257929ce1d1224f45803

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M util/epist/actions.hhutil/epist/actions.hh

@@ -80,9 +80,9 @@ inline enum ActionType type() const { return _type;}

inline const KeyCode keycode() const { return _keycode; } inline const int modifierMask() const { return _modifierMask; } - Action::Action(enum ActionType type, KeyCode keycode, int modifierMask); + Action(enum ActionType type, KeyCode keycode, int modifierMask); }; -typedef list<Action> ActionList; +typedef std::list<Action> ActionList; #endif