From b3c6751b9b7fc1401fd5e87a034cdaec92b67b20 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Sun, 24 May 2009 15:17:42 +0000 Subject: Strip trailing whitespaces in the whole code base. svn-id: r40867 --- backends/keymapper/action.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'backends/keymapper/action.h') diff --git a/backends/keymapper/action.h b/backends/keymapper/action.h index 04d8dd4067..31576e2960 100644 --- a/backends/keymapper/action.h +++ b/backends/keymapper/action.h @@ -63,12 +63,12 @@ private: Keymap *_boss; public: - Action(Keymap *boss, const char *id, String des = "", + Action(Keymap *boss, const char *id, String des = "", ActionType typ = kGenericActionType, KeyType prefKey = kGenericKeyType, int pri = 0, int flg = 0 ); - void addEvent(const Event &evt) { + void addEvent(const Event &evt) { events.push_back(evt); } @@ -101,7 +101,7 @@ public: addEvent(evt); } - Keymap *getParent() { + Keymap *getParent() { return _boss; } @@ -111,10 +111,10 @@ public: }; struct ActionPriorityComp : public BinaryFunction { - bool operator()(const Action *x, const Action *y) const { + bool operator()(const Action *x, const Action *y) const { return x->priority > y->priority; } - bool operator()(const Action &x, const Action &y) const { + bool operator()(const Action &x, const Action &y) const { return x.priority > y.priority; } }; -- cgit v1.2.3