summaryrefslogtreecommitdiff
path: root/sw/source/uibase/app
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-08-18 13:16:31 +0100
committerCaolán McNamara <caolanm@redhat.com>2016-08-18 14:24:11 +0100
commit089620728299ab1688edaf066e9f9790d67449aa (patch)
treead6f09018d00118fd046ea154d3217369a3c7af4 /sw/source/uibase/app
parent7a31ae209304730e06e1f33333ebc81e7c7b5de9 (diff)
cppcheck: noCopyConstructor
Change-Id: Id5323cb6f52666f85965e11b07e4f2bca8af4e78
Diffstat (limited to 'sw/source/uibase/app')
-rw-r--r--sw/source/uibase/app/docstyle.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/sw/source/uibase/app/docstyle.cxx b/sw/source/uibase/app/docstyle.cxx
index e2a8e3bb52ec..557a00af2043 100644
--- a/sw/source/uibase/app/docstyle.cxx
+++ b/sw/source/uibase/app/docstyle.cxx
@@ -94,6 +94,8 @@ class SwImplShellAction
public:
explicit SwImplShellAction( SwDoc& rDoc );
~SwImplShellAction();
+ SwImplShellAction(const SwImplShellAction&) = delete;
+ SwImplShellAction& operator=(const SwImplShellAction&) = delete;
};
SwImplShellAction::SwImplShellAction( SwDoc& rDoc )