diff options
| author | Dana Jansens <danakj@orodu.net> | 2002-07-20 08:06:54 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2002-07-20 08:06:54 +0000 |
| commit | c517f511000c8ec775f7413527b9e276b7995806 (patch) | |
| tree | d2f5b8661b87b134a0d1f5c74c09527cd6274312 /util/epist/actions.hh | |
| parent | b4411cb1ef1c25a287181b570e974545e1010530 (diff) | |
some cleanups and such.
Diffstat (limited to 'util/epist/actions.hh')
| -rw-r--r-- | util/epist/actions.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util/epist/actions.hh b/util/epist/actions.hh index 09ee523f..b211bf9d 100644 --- a/util/epist/actions.hh +++ b/util/epist/actions.hh @@ -73,16 +73,16 @@ public: private: enum ActionType _type; const KeyCode _keycode; - const int _modifierMask; + const unsigned int _modifierMask; const int _numberParam; public: inline enum ActionType type() const { return _type;} inline const KeyCode keycode() const { return _keycode; } - inline const int modifierMask() const { return _modifierMask; } + inline const unsigned int modifierMask() const { return _modifierMask; } inline const int number() const { return _numberParam; } - Action(enum ActionType type, KeyCode keycode, int modifierMask, + Action(enum ActionType type, KeyCode keycode, unsigned int modifierMask, int number = 0); }; |
