diff --git a/escher/include/escher/invocation.h b/escher/include/escher/invocation.h index 434ac6fc7..7e7c2fd65 100644 --- a/escher/include/escher/invocation.h +++ b/escher/include/escher/invocation.h @@ -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