diff options
| author | Dana Jansens <danakj@orodu.net> | 2002-07-19 22:41:48 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2002-07-19 22:41:48 +0000 |
| commit | a939bb6e41772ffd4fe75f0c73ae79db237ca979 (patch) | |
| tree | c75d2ba57b4d633aad5e8ac13fbdd6041b9f1092 /util | |
| parent | be77122bee3300e982ff257929ce1d1224f45803 (diff) | |
properly scope thse stl stuff please!
Diffstat (limited to 'util')
| -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 |
