diff options
author | Noel Grandin <noel@peralex.com> | 2016-04-12 11:02:36 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-04-12 11:25:18 +0200 |
commit | f520af173500bc2a0c35e20e96353a5e2305bb63 (patch) | |
tree | 2a1f1b73e43aafcbf160666d78e1c5dece6ba5b4 /cui/source/dialogs/SpellDialog.cxx | |
parent | 9cfa0810bd4af4c1ebfcedaa62e82db87b3aea08 (diff) |
clang-tidy performance-unnecessary-value-param in cui
Change-Id: I93a09bf8e475ec1aa2ebf7754c7048c81696922b
Diffstat (limited to 'cui/source/dialogs/SpellDialog.cxx')
-rw-r--r-- | cui/source/dialogs/SpellDialog.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cui/source/dialogs/SpellDialog.cxx b/cui/source/dialogs/SpellDialog.cxx index 0a5815f6135d..75a14c890488 100644 --- a/cui/source/dialogs/SpellDialog.cxx +++ b/cui/source/dialogs/SpellDialog.cxx @@ -144,7 +144,7 @@ public: void SetErrorLanguageSelected(bool bSet){ m_bIsErrorLanguageSelected = bSet;} bool IsErrorLanguageSelected() const {return m_bIsErrorLanguageSelected;} - void SetDictionary(Reference<XDictionary> xDict) { m_xDictionary = xDict; } + void SetDictionary(const Reference<XDictionary>& xDict) { m_xDictionary = xDict; } Reference<XDictionary> GetDictionary() const {return m_xDictionary;} void SetAddedWord(const OUString& rWord) {m_sAddedWord = rWord;} const OUString& GetAddedWord() const { return m_sAddedWord;} @@ -1580,7 +1580,7 @@ void SentenceEditWindow_Impl::dispose() VclMultiLineEdit::dispose(); } -bool SentenceEditWindow_Impl::MarkNextError( bool bIgnoreCurrentError, css::uno::Reference<css::linguistic2::XSpellChecker1> xSpell ) +bool SentenceEditWindow_Impl::MarkNextError( bool bIgnoreCurrentError, const css::uno::Reference<css::linguistic2::XSpellChecker1>& xSpell ) { if (bIgnoreCurrentError) m_aIgnoreErrorsAt.insert( m_nErrorStart ); @@ -1775,7 +1775,7 @@ void SentenceEditWindow_Impl::RestoreCurrentError() } -void SentenceEditWindow_Impl::SetAlternatives( Reference< XSpellAlternatives> xAlt ) +void SentenceEditWindow_Impl::SetAlternatives( const Reference< XSpellAlternatives>& xAlt ) { TextPaM aCursor(0, m_nErrorStart); DBG_ASSERT(static_cast<const SpellErrorAttrib*>( |