summaryrefslogtreecommitdiff
path: root/include/sfx2/sidebar/AsynchronousCall.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/sfx2/sidebar/AsynchronousCall.hxx')
-rw-r--r--include/sfx2/sidebar/AsynchronousCall.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/sfx2/sidebar/AsynchronousCall.hxx b/include/sfx2/sidebar/AsynchronousCall.hxx
index dfdf9d6d946a..0f2377abc511 100644
--- a/include/sfx2/sidebar/AsynchronousCall.hxx
+++ b/include/sfx2/sidebar/AsynchronousCall.hxx
@@ -24,8 +24,8 @@
struct ImplSVEvent;
-namespace sfx2::sidebar {
-
+namespace sfx2::sidebar
+{
/** A simple asynchronous call via Application::PostUserCall.
*/
class AsynchronousCall
@@ -33,7 +33,7 @@ class AsynchronousCall
public:
typedef ::std::function<void()> Action;
- AsynchronousCall (const Action& rAction);
+ AsynchronousCall(const Action& rAction);
~AsynchronousCall();
void RequestCall();
@@ -42,7 +42,7 @@ public:
private:
Action maAction;
- ImplSVEvent * mnCallId;
+ ImplSVEvent* mnCallId;
DECL_LINK(HandleUserCall, void*, void);
};