[Libreoffice-commits] core.git: sw/source
Caolán McNamara
caolanm at redhat.com
Wed Jan 18 20:54:21 UTC 2017
sw/source/uibase/inc/olmenu.hxx | 2 --
sw/source/uibase/lingu/olmenu.cxx | 17 ++++++++---------
2 files changed, 8 insertions(+), 11 deletions(-)
New commits:
commit ba49d03a60b340dfb217d334cd342e1090a7af71
Author: Caolán McNamara <caolanm at redhat.com>
Date: Wed Jan 18 20:52:58 2017 +0000
we only need this image once, don't need to keep it
Change-Id: I4ab3fc515bb1484d00f3a690b9fe8ae9c9dca9fe
diff --git a/sw/source/uibase/inc/olmenu.hxx b/sw/source/uibase/inc/olmenu.hxx
index 0ebdfed..21e731b 100644
--- a/sw/source/uibase/inc/olmenu.hxx
+++ b/sw/source/uibase/inc/olmenu.hxx
@@ -56,8 +56,6 @@ class SW_DLLPUBLIC SwSpellPopup : public PopupMenu
OUString m_aDicNameSingle;
bool m_bGrammarResults; // show grammar results? Or show spellcheck results?
- Image m_aInfo16;
-
static void fillLangPopupMenu( PopupMenu *pPopupMenu, sal_uInt16 nLangStart,
const css::uno::Sequence< OUString >& aSeq, SwWrtShell* pWrtSh,
std::map< sal_Int16, OUString > &rLangTable );
diff --git a/sw/source/uibase/lingu/olmenu.cxx b/sw/source/uibase/lingu/olmenu.cxx
index f4007a3..a5fe2b6 100644
--- a/sw/source/uibase/lingu/olmenu.cxx
+++ b/sw/source/uibase/lingu/olmenu.cxx
@@ -450,14 +450,13 @@ SwSpellPopup::SwSpellPopup(
const linguistic2::ProofreadingResult &rResult,
sal_Int32 nErrorInResult,
const uno::Sequence< OUString > &rSuggestions,
- const OUString &rParaText ) :
-PopupMenu( SW_RES(MN_SPELL_POPUP) ),
-m_pSh( pWrtSh ),
-m_xGrammarResult( rResult ),
-m_aSuggestions( rSuggestions ),
-m_sExplanationLink( ),
-m_bGrammarResults( true ),
-m_aInfo16( SW_RES(IMG_INFO_16) )
+ const OUString &rParaText )
+ : PopupMenu(SW_RES(MN_SPELL_POPUP))
+ , m_pSh(pWrtSh)
+ , m_xGrammarResult(rResult)
+ , m_aSuggestions(rSuggestions)
+ , m_sExplanationLink()
+ , m_bGrammarResults(true)
{
m_nCheckedLanguage = LanguageTag::convertToLanguageType( rResult.aLocale );
m_nGrammarError = nErrorInResult;
@@ -468,7 +467,7 @@ m_aInfo16( SW_RES(IMG_INFO_16) )
InsertSeparator(OString(), nPos++);
InsertItem(MN_SHORT_COMMENT, aMessageText, MenuItemBits::NOSELECT, OString(), nPos++);
if (bUseImagesInMenus)
- SetItemImage( MN_SHORT_COMMENT, m_aInfo16 );
+ SetItemImage(MN_SHORT_COMMENT, Image(SW_RES(IMG_INFO_16)));
// Add an item to show detailed infos if the FullCommentURL property is defined
beans::PropertyValues aProperties = rResult.aErrors[ nErrorInResult ].aProperties;
More information about the Libreoffice-commits
mailing list