diff options
author | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2017-09-20 10:15:11 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-09-21 07:06:34 +0200 |
commit | 4067487eb304c6686a22319c51790e41e311de08 (patch) | |
tree | 8e35fc1af9790929eec5392be913c9c00c8556f0 /basctl/source/basicide/scriptdocument.cxx | |
parent | 4ac6a70524eb1383b8dab5e10bd3532434fe08a0 (diff) |
clang-tidy modernize-use-equals-default in basctl
to find unneeded explicit defined or default able
copy assignments and copy constructors.
Remove the default destructor if it's not needed.
Change-Id: I8c53a8622a53398889397132ec1f464e996ac49d
Reviewed-on: https://gerrit.libreoffice.org/42525
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'basctl/source/basicide/scriptdocument.cxx')
-rw-r--r-- | basctl/source/basicide/scriptdocument.cxx | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/basctl/source/basicide/scriptdocument.cxx b/basctl/source/basicide/scriptdocument.cxx index 9078948e4d2b..5bbbc0a9ee1a 100644 --- a/basctl/source/basicide/scriptdocument.cxx +++ b/basctl/source/basicide/scriptdocument.cxx @@ -1044,17 +1044,6 @@ namespace basctl } - ScriptDocument::ScriptDocument( const ScriptDocument& _rSource ) - :m_pImpl( _rSource.m_pImpl ) - { - } - - - ScriptDocument::~ScriptDocument() - { - } - - const ScriptDocument& ScriptDocument::getApplicationScriptDocument() { static ScriptDocument s_aApplicationScripts; |