diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-08-11 20:46:52 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-08-11 21:04:41 +0100 |
commit | 3d80bb27d2416086026f4edf08ba2bff953901d6 (patch) | |
tree | 50d92537c859c836bc1724e9233a154ad63925eb /svl | |
parent | a2c6c2e50054ff6cee70cff936d3682a5b0f5a55 (diff) |
cppcheck: noCopyConstructor
Change-Id: I20dabf3106d8f74fac5cc59f93a006875b9e1f91
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/numbers/zforscan.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/svl/source/numbers/zforscan.hxx b/svl/source/numbers/zforscan.hxx index 54eec03c69ac..5f51edae1bd2 100644 --- a/svl/source/numbers/zforscan.hxx +++ b/svl/source/numbers/zforscan.hxx @@ -194,6 +194,10 @@ private: // Private section sal_uInt8 nNatNumModifier; // Thai T speciality + // Copy assignment is forbidden and not implemented. + ImpSvNumberformatScan (const ImpSvNumberformatScan &) SAL_DELETED_FUNCTION; + ImpSvNumberformatScan & operator= (const ImpSvNumberformatScan &) SAL_DELETED_FUNCTION; + void InitKeywords() const; void InitSpecialKeyword( NfKeywordIndex eIdx ) const; void InitCompatCur() const; |