diff options
| -rw-r--r-- | util/epist/actions.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/epist/actions.hh b/util/epist/actions.hh index 531d54d2..9a7a6043 100644 --- a/util/epist/actions.hh +++ b/util/epist/actions.hh @@ -80,9 +80,9 @@ public: 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 |
