From: Dana Jansens Date: Fri, 19 Jul 2002 22:41:48 +0000 (+0000) Subject: properly scope thse stl stuff please! X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=a939bb6e41772ffd4fe75f0c73ae79db237ca979;p=chaz%2Fopenbox properly scope thse stl stuff please! --- 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 ActionList; +typedef std::list ActionList; #endif