[escher] Clean indentation

Change-Id: Id3b187b4bfff1e151ea96faebe8039f3212da609
This commit is contained in:
Émilie Feral
2017-01-27 17:14:34 +01:00
parent 298b76dc31
commit c4336c93b1

View File

@@ -3,14 +3,12 @@
class Invocation {
public:
typedef void (*Action)(void * context, void * sender);
Invocation(Action a, void * c);
void perform(void * sender);
typedef void (*Action)(void * context, void * sender);
Invocation(Action a, void * c);
void perform(void * sender);
private:
Action m_action;
void * m_context;
Action m_action;
void * m_context;
};
#endif