summaryrefslogtreecommitdiff
path: root/util/epist/actions.hh
diff options
context:
space:
mode:
Diffstat (limited to 'util/epist/actions.hh')
-rw-r--r--util/epist/actions.hh8
1 files changed, 3 insertions, 5 deletions
diff --git a/util/epist/actions.hh b/util/epist/actions.hh
index 25f1e968..8a7385e1 100644
--- a/util/epist/actions.hh
+++ b/util/epist/actions.hh
@@ -93,8 +93,8 @@ private:
const KeyCode _keycode;
const unsigned int _modifierMask;
- const int _numberParam;
- const std::string _stringParam;
+ int _numberParam;
+ std::string _stringParam;
public:
inline enum ActionType type() const { return _type;}
inline const KeyCode keycode() const { return _keycode; }
@@ -103,9 +103,7 @@ public:
inline const std::string &string() const { return _stringParam; }
Action(enum ActionType type, KeyCode keycode, unsigned int modifierMask,
- int number = 0);
- Action(enum ActionType type, KeyCode keycode, unsigned int modifierMask,
- const std::string &str);
+ const std::string &str = "");
};
typedef std::list<Action> ActionList;