summaryrefslogtreecommitdiff
path: root/sw/source/uibase/inc/mailmergehelper.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/uibase/inc/mailmergehelper.hxx')
-rw-r--r--sw/source/uibase/inc/mailmergehelper.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/uibase/inc/mailmergehelper.hxx b/sw/source/uibase/inc/mailmergehelper.hxx
index 60882df8aba5..664786d5b64c 100644
--- a/sw/source/uibase/inc/mailmergehelper.hxx
+++ b/sw/source/uibase/inc/mailmergehelper.hxx
@@ -58,7 +58,7 @@ struct SwAddressPreview_Impl;
// and also the resulting address filled with database data
class SW_DLLPUBLIC SwAddressPreview final : public weld::CustomWidgetController
{
- std::unique_ptr<SwAddressPreview_Impl> pImpl;
+ std::unique_ptr<SwAddressPreview_Impl> m_pImpl;
std::unique_ptr<weld::ScrolledWindow> m_xVScrollBar;
Link<LinkParamNone*,void> m_aSelectHdl;
@@ -123,14 +123,14 @@ struct SwMergeAddressItem
class SW_DLLPUBLIC SwAddressIterator
{
- OUString sAddress;
+ OUString m_sAddress;
public:
SwAddressIterator(const OUString& rAddress) :
- sAddress(rAddress)
+ m_sAddress(rAddress)
{}
SwMergeAddressItem Next();
- bool HasMore() const { return !sAddress.isEmpty(); }
+ bool HasMore() const { return !m_sAddress.isEmpty(); }
};
class SW_DLLPUBLIC SwAuthenticator final :