From c4336c93b13a996d05f2784c8e0695c6e60f96d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89milie=20Feral?= Date: Fri, 27 Jan 2017 17:14:34 +0100 Subject: [PATCH] [escher] Clean indentation Change-Id: Id3b187b4bfff1e151ea96faebe8039f3212da609 --- escher/include/escher/invocation.h | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) 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