summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-07-19 22:41:48 +0000
committerDana Jansens <danakj@orodu.net>2002-07-19 22:41:48 +0000
commita939bb6e41772ffd4fe75f0c73ae79db237ca979 (patch)
treec75d2ba57b4d633aad5e8ac13fbdd6041b9f1092
parentbe77122bee3300e982ff257929ce1d1224f45803 (diff)
properly scope thse stl stuff please!
-rw-r--r--util/epist/actions.hh4
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