summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2021-11-22 08:04:23 +0100
committerMiklos Vajna <vmiklos@collabora.com>2021-11-22 09:09:27 +0100
commite6b75a22dfbf81b6eca628384ae1c4bc499c50a3 (patch)
tree896f27bb522449224dc86ff1e503cd0de4ee2ddb
parent7b0f5178d81e2673345f88abec2e5656f841627e (diff)
sw: prefix members of SwDBManager, SwWebGlosDocShell, SwWordCountWrapper ...
... and SwZoomControl See tdf#94879 for motivation. Change-Id: I74f31e45a8c215d406371a23b64d548fbb851d28 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125641 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
-rw-r--r--compilerplugins/clang/badstatics.cxx2
-rw-r--r--sw/inc/dbmgr.hxx2
-rw-r--r--sw/source/uibase/dbui/dbmgr.cxx16
-rw-r--r--sw/source/uibase/dialog/wordcountwrapper.cxx10
-rw-r--r--sw/source/uibase/inc/glshell.hxx12
-rw-r--r--sw/source/uibase/inc/wordcountdialog.hxx2
-rw-r--r--sw/source/uibase/inc/zoomctrl.hxx2
-rw-r--r--sw/source/uibase/misc/glshell.cxx2
-rw-r--r--sw/source/uibase/utlui/zoomctrl.cxx8
9 files changed, 28 insertions, 28 deletions
diff --git a/compilerplugins/clang/badstatics.cxx b/compilerplugins/clang/badstatics.cxx
index c0f24c54f75a..75eee2606769 100644
--- a/compilerplugins/clang/badstatics.cxx
+++ b/compilerplugins/clang/badstatics.cxx
@@ -201,7 +201,7 @@ public:
|| name == "gFontPreviewVirDevs"
//svtools/source/control/ctrlbox.cxx, empty at exit
|| name == "aLogger" // FormulaLogger& FormulaLogger::get() in sc/source/core/tool/formulalogger.cxx
- || name == "m_aUncommittedRegistrations" // sw/source/uibase/dbui/dbmgr.cxx
+ || name == "s_aUncommittedRegistrations" // sw/source/uibase/dbui/dbmgr.cxx
|| (loplugin::DeclCheck(pVarDecl).Var("aAllListeners")
.Class("ScAddInListener").GlobalNamespace()) // not owning
|| (loplugin::DeclCheck(pVarDecl).Var("maThreadSpecific")
diff --git a/sw/inc/dbmgr.hxx b/sw/inc/dbmgr.hxx
index d18660ea7ffd..dca2dbd7bbe5 100644
--- a/sw/inc/dbmgr.hxx
+++ b/sw/inc/dbmgr.hxx
@@ -259,7 +259,7 @@ class SW_DLLPUBLIC SwDBManager
OUString m_sEmbeddedName;
/// Store last registrations to revoke or commit
- static std::vector<std::pair<SwDocShell*, OUString>> m_aUncommittedRegistrations;
+ static std::vector<std::pair<SwDocShell*, OUString>> s_aUncommittedRegistrations;
/// Not used connections.
std::vector<OUString> m_aNotUsedConnections;
diff --git a/sw/source/uibase/dbui/dbmgr.cxx b/sw/source/uibase/dbui/dbmgr.cxx
index 15fa5386b06a..fb1aedb3bdd7 100644
--- a/sw/source/uibase/dbui/dbmgr.cxx
+++ b/sw/source/uibase/dbui/dbmgr.cxx
@@ -138,7 +138,7 @@ void lcl_emitEvent(SfxEventHintId nEventId, sal_Int32 nStrId, SfxObjectShell* pD
}
-std::vector<std::pair<SwDocShell*, OUString>> SwDBManager::m_aUncommittedRegistrations;
+std::vector<std::pair<SwDocShell*, OUString>> SwDBManager::s_aUncommittedRegistrations;
namespace {
@@ -2830,7 +2830,7 @@ OUString SwDBManager::LoadAndRegisterDataSource(weld::Window* pParent, SwDocShel
}
sFind = LoadAndRegisterDataSource_Impl( type, DBConnURIType::FLAT == type ? &aSettings : nullptr, aURL, nullptr, pDocShell );
- m_aUncommittedRegistrations.push_back(std::pair<SwDocShell*, OUString>(pDocShell, sFind));
+ s_aUncommittedRegistrations.push_back(std::pair<SwDocShell*, OUString>(pDocShell, sFind));
}
return sFind;
}
@@ -2909,7 +2909,7 @@ void SwDBManager::LoadAndRegisterEmbeddedDataSource(const SwDBData& rData, const
// temp file - don't remember connection
if (rData.sDataSource.isEmpty())
- m_aUncommittedRegistrations.push_back(std::pair<SwDocShell*, OUString>(nullptr, sDataSource));
+ s_aUncommittedRegistrations.push_back(std::pair<SwDocShell*, OUString>(nullptr, sDataSource));
}
void SwDBManager::ExecuteFormLetter( SwWrtShell& rSh,
@@ -3226,7 +3226,7 @@ std::shared_ptr<SwMailMergeConfigItem> SwDBManager::PerformMailMerge(SwView cons
void SwDBManager::RevokeLastRegistrations()
{
- if (m_aUncommittedRegistrations.empty())
+ if (s_aUncommittedRegistrations.empty())
return;
SwView* pView = ( m_pDoc && m_pDoc->GetDocShell() ) ? m_pDoc->GetDocShell()->GetView() : nullptr;
@@ -3240,12 +3240,12 @@ void SwDBManager::RevokeLastRegistrations()
}
}
- for (auto it = m_aUncommittedRegistrations.begin(); it != m_aUncommittedRegistrations.end();)
+ for (auto it = s_aUncommittedRegistrations.begin(); it != s_aUncommittedRegistrations.end();)
{
if ((m_pDoc && it->first == m_pDoc->GetDocShell()) || it->first == nullptr)
{
RevokeDataSource(it->second);
- it = m_aUncommittedRegistrations.erase(it);
+ it = s_aUncommittedRegistrations.erase(it);
}
else
++it;
@@ -3254,12 +3254,12 @@ void SwDBManager::RevokeLastRegistrations()
void SwDBManager::CommitLastRegistrations()
{
- for (auto aIt = m_aUncommittedRegistrations.begin(); aIt != m_aUncommittedRegistrations.end();)
+ for (auto aIt = s_aUncommittedRegistrations.begin(); aIt != s_aUncommittedRegistrations.end();)
{
if (aIt->first == m_pDoc->GetDocShell() || aIt->first == nullptr)
{
m_aNotUsedConnections.push_back(aIt->second);
- aIt = m_aUncommittedRegistrations.erase(aIt);
+ aIt = s_aUncommittedRegistrations.erase(aIt);
}
else
aIt++;
diff --git a/sw/source/uibase/dialog/wordcountwrapper.cxx b/sw/source/uibase/dialog/wordcountwrapper.cxx
index e1a6c99a9428..d7d4a14515ce 100644
--- a/sw/source/uibase/dialog/wordcountwrapper.cxx
+++ b/sw/source/uibase/dialog/wordcountwrapper.cxx
@@ -20,13 +20,13 @@ SwWordCountWrapper::SwWordCountWrapper(vcl::Window *pParentWindow,
: SfxChildWindow(pParentWindow, nId)
{
SwAbstractDialogFactory* pFact = SwAbstractDialogFactory::Create();
- xAbstDlg.reset(pFact->CreateSwWordCountDialog(pBindings, this, pParentWindow->GetFrameWeld(), pInfo));
- SetController(xAbstDlg->GetController());
+ m_xAbstDlg.reset(pFact->CreateSwWordCountDialog(pBindings, this, pParentWindow->GetFrameWeld(), pInfo));
+ SetController(m_xAbstDlg->GetController());
}
SwWordCountWrapper::~SwWordCountWrapper()
{
- xAbstDlg.disposeAndClear();
+ m_xAbstDlg.disposeAndClear();
}
SfxChildWinInfo SwWordCountWrapper::GetInfo() const
@@ -37,12 +37,12 @@ SfxChildWinInfo SwWordCountWrapper::GetInfo() const
void SwWordCountWrapper::UpdateCounts()
{
- xAbstDlg->UpdateCounts();
+ m_xAbstDlg->UpdateCounts();
}
void SwWordCountWrapper::SetCounts(const SwDocStat &rCurrCnt, const SwDocStat &rDocStat)
{
- xAbstDlg->SetCounts(rCurrCnt, rDocStat);
+ m_xAbstDlg->SetCounts(rCurrCnt, rDocStat);
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sw/source/uibase/inc/glshell.hxx b/sw/source/uibase/inc/glshell.hxx
index 1fcd51b370df..0b13b7681227 100644
--- a/sw/source/uibase/inc/glshell.hxx
+++ b/sw/source/uibase/inc/glshell.hxx
@@ -51,9 +51,9 @@ public:
class SwWebGlosDocShell final : public SwWebDocShell
{
- OUString aLongName;
- OUString aShortName;
- OUString aGroupName;
+ OUString m_aLongName;
+ OUString m_aShortName;
+ OUString m_aGroupName;
virtual bool Save() override;
@@ -71,11 +71,11 @@ public:
void Execute( SfxRequest& );
void GetState( SfxItemSet& );
void SetLongName( const OUString& rLongName )
- { aLongName = rLongName; }
+ { m_aLongName = rLongName; }
void SetShortName( const OUString& rShortName )
- { aShortName = rShortName; }
+ { m_aShortName = rShortName; }
void SetGroupName( const OUString& rGroupName )
- { aGroupName = rGroupName; }
+ { m_aGroupName = rGroupName; }
};
#endif
diff --git a/sw/source/uibase/inc/wordcountdialog.hxx b/sw/source/uibase/inc/wordcountdialog.hxx
index 653a04e6bfeb..c5b23f0c5307 100644
--- a/sw/source/uibase/inc/wordcountdialog.hxx
+++ b/sw/source/uibase/inc/wordcountdialog.hxx
@@ -57,7 +57,7 @@ public:
class SwWordCountWrapper final : public SfxChildWindow
{
- VclPtr<AbstractSwWordCountFloatDlg> xAbstDlg;
+ VclPtr<AbstractSwWordCountFloatDlg> m_xAbstDlg;
public:
SwWordCountWrapper( vcl::Window *pParentWindow,
diff --git a/sw/source/uibase/inc/zoomctrl.hxx b/sw/source/uibase/inc/zoomctrl.hxx
index 58dccbcbdbb4..b5af8ba9a563 100644
--- a/sw/source/uibase/inc/zoomctrl.hxx
+++ b/sw/source/uibase/inc/zoomctrl.hxx
@@ -24,7 +24,7 @@
class SwZoomControl final : public SvxZoomStatusBarControl
{
private:
- OUString sPreviewZoom;
+ OUString m_sPreviewZoom;
public:
virtual void Command(const CommandEvent& rCEvt) override;
diff --git a/sw/source/uibase/misc/glshell.cxx b/sw/source/uibase/misc/glshell.cxx
index ff33f76b4f9a..aece4e8c18b8 100644
--- a/sw/source/uibase/misc/glshell.cxx
+++ b/sw/source/uibase/misc/glshell.cxx
@@ -185,7 +185,7 @@ bool SwWebGlosDocShell::Save()
{
// same comment as in SwGlosDocShell::Save - see there
if ( GetWrtShell() )
- return ::lcl_Save( *GetWrtShell(), aGroupName, aShortName, aLongName );
+ return ::lcl_Save( *GetWrtShell(), m_aGroupName, m_aShortName, m_aLongName );
else
{
SetModified( false );
diff --git a/sw/source/uibase/utlui/zoomctrl.cxx b/sw/source/uibase/utlui/zoomctrl.cxx
index 3f7ff7021fcf..4489432464c7 100644
--- a/sw/source/uibase/utlui/zoomctrl.cxx
+++ b/sw/source/uibase/utlui/zoomctrl.cxx
@@ -42,12 +42,12 @@ void SwZoomControl::StateChangedAtStatusBarControl( sal_uInt16 nSID, SfxItemStat
const SfxStringItem* pItem = nullptr;
if (SfxItemState::DEFAULT == eState && (pItem = dynamic_cast<const SfxStringItem*>(pState)))
{
- sPreviewZoom = pItem->GetValue();
- GetStatusBar().SetItemText(GetId(), sPreviewZoom);
+ m_sPreviewZoom = pItem->GetValue();
+ GetStatusBar().SetItemText(GetId(), m_sPreviewZoom);
}
else
{
- sPreviewZoom.clear();
+ m_sPreviewZoom.clear();
SvxZoomStatusBarControl::StateChangedAtStatusBarControl(nSID, eState, pState);
}
}
@@ -58,7 +58,7 @@ void SwZoomControl::Paint( const UserDrawEvent& )
void SwZoomControl::Command( const CommandEvent& rCEvt )
{
- if (sPreviewZoom.isEmpty())
+ if (m_sPreviewZoom.isEmpty())
SvxZoomStatusBarControl::Command(rCEvt);
}