diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-03-03 09:01:05 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-03-03 09:01:05 +0100 |
commit | 4d9746c828558c9f872e0aed52442863affb25d5 (patch) | |
tree | 507d7c2ba67f47d3cbbcf01a722236ff1b48426b /common/resource.h | |
parent | 9cea920b7dd51867a0be0fed2f461b6be73c103e (diff) | |
download | sink-4d9746c828558c9f872e0aed52442863affb25d5.tar.gz sink-4d9746c828558c9f872e0aed52442863affb25d5.zip |
Fromatted the whole codebase with clang-format.
clang-format -i */**{.cpp,.h}
Diffstat (limited to 'common/resource.h')
-rw-r--r-- | common/resource.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/common/resource.h b/common/resource.h index d0100f6..0e7cd11 100644 --- a/common/resource.h +++ b/common/resource.h | |||
@@ -24,8 +24,7 @@ | |||
24 | #include <Async/Async> | 24 | #include <Async/Async> |
25 | #include "notification.h" | 25 | #include "notification.h" |
26 | 26 | ||
27 | namespace Sink | 27 | namespace Sink { |
28 | { | ||
29 | class FacadeFactory; | 28 | class FacadeFactory; |
30 | 29 | ||
31 | /** | 30 | /** |
@@ -66,7 +65,7 @@ signals: | |||
66 | 65 | ||
67 | private: | 66 | private: |
68 | class Private; | 67 | class Private; |
69 | Private * const d; | 68 | Private *const d; |
70 | }; | 69 | }; |
71 | 70 | ||
72 | /** | 71 | /** |
@@ -85,11 +84,9 @@ public: | |||
85 | 84 | ||
86 | private: | 85 | private: |
87 | class Private; | 86 | class Private; |
88 | Private * const d; | 87 | Private *const d; |
89 | }; | 88 | }; |
90 | 89 | ||
91 | } // namespace Sink | 90 | } // namespace Sink |
92 | 91 | ||
93 | Q_DECLARE_INTERFACE(Sink::ResourceFactory, "org.kde.sink.resourcefactory") | 92 | Q_DECLARE_INTERFACE(Sink::ResourceFactory, "org.kde.sink.resourcefactory") |
94 | |||
95 | |||