Kaydet (Commit) 81892b20 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:unnecessaryparen

...when compiling as C++17, so the ParenExpr is no longer hidden behind
ExprWithCleanups/CXXConstructExpr/MaterializedTemporaryExpr wrappers.

Change-Id: I81346edbef46cad72bf53a43f162a75d19b6c713
üst 24eeb4d2
...@@ -127,7 +127,7 @@ public: ...@@ -127,7 +127,7 @@ public:
virtual DeactivateRC DeactivatePage( SfxItemSet* pSet ) override; virtual DeactivateRC DeactivatePage( SfxItemSet* pSet ) override;
bool IsMarkWndVisible () { return static_cast<vcl::Window*>(mpMarkWnd)->IsVisible(); } bool IsMarkWndVisible () { return static_cast<vcl::Window*>(mpMarkWnd)->IsVisible(); }
Size GetSizeExtraWnd () { return ( mpMarkWnd->GetSizePixel() ); } Size GetSizeExtraWnd () { return mpMarkWnd->GetSizePixel(); }
bool MoveToExtraWnd ( Point aNewPos, bool bDisConnectDlg = false ); bool MoveToExtraWnd ( Point aNewPos, bool bDisConnectDlg = false );
using TabPage::ActivatePage; using TabPage::ActivatePage;
......
...@@ -1754,7 +1754,7 @@ IMPL_LINK( OfaLanguagesTabPage, LocaleSettingHdl, ListBox&, rListBox, void ) ...@@ -1754,7 +1754,7 @@ IMPL_LINK( OfaLanguagesTabPage, LocaleSettingHdl, ListBox&, rListBox, void )
} }
const NfCurrencyEntry* pCurr = &SvNumberFormatter::GetCurrencyEntry( const NfCurrencyEntry* pCurr = &SvNumberFormatter::GetCurrencyEntry(
((eLang == LANGUAGE_USER_SYSTEM_CONFIG) ? MsLangId::getSystemLanguage() : eLang)); (eLang == LANGUAGE_USER_SYSTEM_CONFIG) ? MsLangId::getSystemLanguage() : eLang);
sal_Int32 nPos = m_pCurrencyLB->GetEntryPos( nullptr ); sal_Int32 nPos = m_pCurrencyLB->GetEntryPos( nullptr );
if (pCurr) if (pCurr)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment