From 9720e8e5ef49ee56e3612123a52b4a464d5e96ad Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Mon, 5 Jan 2015 13:05:50 +0100 Subject: Some loplugin:revisibility clean-up Stumbled across such redundant visibility re-specifications when looking at the odd case of cppu_unsatisfied_iquery_msg declared CPPU_DLLPUBLIC in cppu/source/cppu/cppu_opt.cxx and used in inline code in include/com/sun/star/uno/Reference.hxx with only a declaration lacking CPPU_DLLPUBLIC visible, and wondering how that actually works on Windows. However, this plugin is probably not worth it being run all the time, so committing it to compilerplugins/clang/store/. Change-Id: Ibc3c4e7499213de1b419ce7eb85455cb832e1510 --- editeng/source/outliner/outlvw.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'editeng') diff --git a/editeng/source/outliner/outlvw.cxx b/editeng/source/outliner/outlvw.cxx index f0032b8b10d1..652fcaa48220 100644 --- a/editeng/source/outliner/outlvw.cxx +++ b/editeng/source/outliner/outlvw.cxx @@ -1471,7 +1471,7 @@ bool isSingleScriptType( sal_uInt16 nScriptType ) // returns: true if a word for thesaurus look-up was found at the current cursor position. // The status string will be word + iso language string (e.g. "light#en-US") -bool EDITENG_DLLPUBLIC GetStatusValueForThesaurusFromContext( +bool GetStatusValueForThesaurusFromContext( OUString &rStatusVal, LanguageType &rLang, const EditView &rEditView ) @@ -1499,7 +1499,7 @@ bool EDITENG_DLLPUBLIC GetStatusValueForThesaurusFromContext( } -void EDITENG_DLLPUBLIC ReplaceTextWithSynonym( EditView &rEditView, const OUString &rSynonmText ) +void ReplaceTextWithSynonym( EditView &rEditView, const OUString &rSynonmText ) { // get selection to use ESelection aCurSel( rEditView.GetSelection() ); -- cgit