summaryrefslogtreecommitdiff
path: root/sw/source/core/edit
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-04-22 10:05:49 +0300
committerTor Lillqvist <tml@collabora.com>2014-04-22 10:06:41 +0300
commit043bbbf1988e8a5b719e0fa4cab9c576dc2deeec (patch)
tree133d28b3670ff2cf355ae91af970573aa82c5c80 /sw/source/core/edit
parente15223582710e9e2e31fad2f557df6ee99501fd0 (diff)
There is nothing "new" with SwNewDBMgr any more
Change-Id: Icbf3d5663a358bf31b58ab8086ffe9160c26bf8f
Diffstat (limited to 'sw/source/core/edit')
-rw-r--r--sw/source/core/edit/edfld.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/core/edit/edfld.cxx b/sw/source/core/edit/edfld.cxx
index a765fbb1445b..a136c120ad0b 100644
--- a/sw/source/core/edit/edfld.cxx
+++ b/sw/source/core/edit/edfld.cxx
@@ -369,16 +369,16 @@ void SwEditShell::UpdateExpFlds(sal_Bool bCloseDB)
if (bCloseDB)
{
#if HAVE_FEATURE_DBCONNECTIVITY
- GetDoc()->GetNewDBMgr()->CloseAll(); // close all database connections
+ GetDoc()->GetDBMgr()->CloseAll(); // close all database connections
#endif
}
EndAllAction();
}
-SwDBMgr* SwEditShell::GetNewDBMgr() const
+SwDBMgr* SwEditShell::GetDBMgr() const
{
#if HAVE_FEATURE_DBCONNECTIVITY
- return GetDoc()->GetNewDBMgr();
+ return GetDoc()->GetDBMgr();
#else
return NULL;
#endif