summaryrefslogtreecommitdiff
path: root/framework/inc/helper
diff options
context:
space:
mode:
authorPhilipp Hofer <philipp.hofer@protonmail.com>2020-11-12 12:58:48 +0100
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2020-11-13 15:18:12 +0100
commit49494bb703107835f83671d9272a0326feec8bb4 (patch)
tree4908e10aa2d8b984a6dbcf1ade1d9a93c268b5c3 /framework/inc/helper
parent951764106e2d82fc59dcf39e14bc17838856a00c (diff)
tdf#123936 Formatting files in module framework with clang-format
Change-Id: I8210a1d4bb51519f59265f370f5e8bab8a3c4179 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105674 Tested-by: Jenkins Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
Diffstat (limited to 'framework/inc/helper')
-rw-r--r--framework/inc/helper/wakeupthread.hxx15
1 files changed, 8 insertions, 7 deletions
diff --git a/framework/inc/helper/wakeupthread.hxx b/framework/inc/helper/wakeupthread.hxx
index 51cf859f0462..49f268a821e8 100644
--- a/framework/inc/helper/wakeupthread.hxx
+++ b/framework/inc/helper/wakeupthread.hxx
@@ -28,13 +28,15 @@
#include <osl/mutex.hxx>
#include <salhelper/thread.hxx>
-namespace com::sun::star::util {
- class XUpdatable;
+namespace com::sun::star::util
+{
+class XUpdatable;
}
-namespace framework{
-
-class WakeUpThread final : public salhelper::Thread {
+namespace framework
+{
+class WakeUpThread final : public salhelper::Thread
+{
css::uno::WeakReference<css::util::XUpdatable> updatable_;
osl::Condition condition_;
@@ -44,11 +46,10 @@ class WakeUpThread final : public salhelper::Thread {
void execute() override;
public:
- WakeUpThread(css::uno::Reference<css::util::XUpdatable> const & updatable);
+ WakeUpThread(css::uno::Reference<css::util::XUpdatable> const& updatable);
void stop();
};
-
}
#endif