diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-08-23 10:57:32 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-08-23 10:57:32 +0200 |
commit | ff28315af105b1ec934a9b7181fadda8face3697 (patch) | |
tree | 6f6241d3a1ce7339daa1e353f65dcf6f46269e70 /sc/inc/textuno.hxx | |
parent | 690a1aa9dcf8ce98ec7f96a5980b571566152865 (diff) |
Remaining clang-tidy misc-move-constructor-init
...by turning the relevant ctor parameters into "const &" (following
8f30da6386fa414b9fe4c704b294a978df77347b "Some clang-tidy
misc-move-constructor-init").
Change-Id: I6686dabe2f05156d6ecd49aa76a3a1166ccac045
Diffstat (limited to 'sc/inc/textuno.hxx')
-rw-r--r-- | sc/inc/textuno.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/inc/textuno.hxx b/sc/inc/textuno.hxx index a2ed46ec44a6..d70f17f26426 100644 --- a/sc/inc/textuno.hxx +++ b/sc/inc/textuno.hxx @@ -120,7 +120,7 @@ public: ScHeaderFooterTextData(const ScHeaderFooterTextData&) = delete; const ScHeaderFooterTextData& operator=(const ScHeaderFooterTextData&) = delete; ScHeaderFooterTextData( - css::uno::WeakReference<css::sheet::XHeaderFooterContent> xContent, ScHeaderFooterPart nP, const EditTextObject* pTextObj); + css::uno::WeakReference<css::sheet::XHeaderFooterContent> const & xContent, ScHeaderFooterPart nP, const EditTextObject* pTextObj); ~ScHeaderFooterTextData(); // helper functions |