diff options
author | Michael Stahl <mstahl@redhat.com> | 2015-07-17 20:45:31 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-07-17 20:46:24 +0200 |
commit | 8f9effacd8f7817a0ad2b1d89b96682855583e48 (patch) | |
tree | 0462e894bf455e282ca997a1bfdd578930509437 /include/basic | |
parent | 22b23819875eb04ca0bba402fb676c530de97726 (diff) |
basic: try to prevent MSVC from generating copy assignment
Change-Id: I7232f69a465b1acaf069005b3695039bdc96c7a3
Diffstat (limited to 'include/basic')
-rw-r--r-- | include/basic/sbx.hxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/basic/sbx.hxx b/include/basic/sbx.hxx index 66c2d09cc883..a4e972317fea 100644 --- a/include/basic/sbx.hxx +++ b/include/basic/sbx.hxx @@ -71,6 +71,9 @@ class BASIC_DLLPUBLIC SbxInfo : public SvRefBase sal_uInt32 nHelpId; SbxParams m_Params; + SbxInfo(SbxInfo const&) = delete; + void operator=(SbxInfo const&) = delete; + protected: bool LoadData( SvStream&, sal_uInt16 ); bool StoreData( SvStream& ) const; |