summaryrefslogtreecommitdiff
path: root/sd/inc/helper
diff options
context:
space:
mode:
Diffstat (limited to 'sd/inc/helper')
-rw-r--r--sd/inc/helper/simplereferencecomponent.hxx9
1 files changed, 4 insertions, 5 deletions
diff --git a/sd/inc/helper/simplereferencecomponent.hxx b/sd/inc/helper/simplereferencecomponent.hxx
index 53ad24a9ef6a..153d8573da42 100644
--- a/sd/inc/helper/simplereferencecomponent.hxx
+++ b/sd/inc/helper/simplereferencecomponent.hxx
@@ -24,8 +24,8 @@
#include <sddllapi.h>
-namespace sd {
-
+namespace sd
+{
/** A simple base implementation for reference-counted components.
acts like sal::SimpleReferenceObject but calls the virtual disposing()
methods before the ref count switches from 1 to zero.
@@ -56,12 +56,11 @@ protected:
private:
oslInterlockedCount m_nCount;
- SimpleReferenceComponent(SimpleReferenceComponent const &) = delete;
- void operator =(SimpleReferenceComponent const &) = delete;
+ SimpleReferenceComponent(SimpleReferenceComponent const&) = delete;
+ void operator=(SimpleReferenceComponent const&) = delete;
bool mbDisposed;
};
-
}
#endif // _SALHELPER_SimpleReferenceComponent_HXX_