summaryrefslogtreecommitdiff
path: root/include/sot/object.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/sot/object.hxx')
-rw-r--r--include/sot/object.hxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/include/sot/object.hxx b/include/sot/object.hxx
index 9680eaba48a9..8b1d7e3d8968 100644
--- a/include/sot/object.hxx
+++ b/include/sot/object.hxx
@@ -27,25 +27,25 @@
class SOT_DLLPUBLIC SotObject : virtual public SvRefBase
{
- sal_uInt16 nOwnerLockCount;
- bool bInClose; // TRUE, in DoClose
+ sal_uInt16 nOwnerLockCount;
+ bool bInClose; // TRUE, in DoClose
protected:
- virtual ~SotObject() override;
- virtual bool Close();
+ virtual ~SotObject() override;
+ virtual bool Close();
public:
- SotObject();
+ SotObject();
- sal_uInt16 GetOwnerLockCount() const { return nOwnerLockCount; }
+ sal_uInt16 GetOwnerLockCount() const { return nOwnerLockCount; }
- void OwnerLock( bool bLock );
- bool DoClose();
- bool IsInClose() const { return bInClose; }
+ void OwnerLock(bool bLock);
+ bool DoClose();
+ bool IsInClose() const { return bInClose; }
private:
- SotObject & operator = ( const SotObject & ) = delete;
- SotObject( const SotObject & ) = delete;
+ SotObject & operator= (const SotObject &) = delete;
+ SotObject(const SotObject &) = delete;
};
#endif