[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.0' - sw/source
Tor Lillqvist (via logerrit)
logerrit at kemper.freedesktop.org
Sun May 19 22:11:49 UTC 2019
sw/source/core/doc/doc.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 31d064e2b168476d0e97795b5c3dd5932d5b2bc8
Author: Tor Lillqvist <tml at collabora.com>
AuthorDate: Mon May 20 01:10:36 2019 +0300
Commit: Tor Lillqvist <tml at collabora.com>
CommitDate: Mon May 20 01:10:36 2019 +0300
Fix build error: m_pDBManager should surely be mpDBManager
Change-Id: I34cc6aad6d28c11f0bdad99087cd989c33d7b606
diff --git a/sw/source/core/doc/doc.cxx b/sw/source/core/doc/doc.cxx
index 643da85715ba..5d2d1db08230 100644
--- a/sw/source/core/doc/doc.cxx
+++ b/sw/source/core/doc/doc.cxx
@@ -489,8 +489,8 @@ void SwDoc::ChgDBData(const SwDBData& rNewData)
{
maDBData = rNewData;
getIDocumentState().SetModified();
- if (m_pDBManager)
- m_pDBManager->CommitLastRegistrations();
+ if (mpDBManager)
+ mpDBManager->CommitLastRegistrations();
}
getIDocumentFieldsAccess().GetSysFieldType(SwFieldIds::DatabaseName)->UpdateFields();
}
More information about the Libreoffice-commits
mailing list