properly scope thse stl stuff please!

This commit is contained in:
Dana Jansens 2002-07-19 22:41:48 +00:00
parent be77122bee
commit a939bb6e41

View file

@ -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