summaryrefslogtreecommitdiff
path: root/sw/source/ui/fldui/changedb.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/ui/fldui/changedb.cxx')
-rw-r--r--sw/source/ui/fldui/changedb.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/sw/source/ui/fldui/changedb.cxx b/sw/source/ui/fldui/changedb.cxx
index 3cda5bbb3a50..54854cd99699 100644
--- a/sw/source/ui/fldui/changedb.cxx
+++ b/sw/source/ui/fldui/changedb.cxx
@@ -125,9 +125,10 @@ void SwChangeDBDlg::FillDBPopup()
SvTreeListEntry* SwChangeDBDlg::Insert(const OUString& rDBName)
{
- const OUString sDBName(rDBName.getToken(0, DB_DELIM));
- const OUString sTableName(rDBName.getToken(1, DB_DELIM));
- sal_IntPtr nCommandType = rDBName.getToken(2, DB_DELIM).toInt32();
+ sal_Int32 nIdx{ 0 };
+ const OUString sDBName(rDBName.getToken(0, DB_DELIM, nIdx));
+ const OUString sTableName(rDBName.getToken(0, DB_DELIM, nIdx));
+ sal_IntPtr nCommandType = rDBName.getToken(0, DB_DELIM, nIdx).toInt32();
SvTreeListEntry* pParent;
SvTreeListEntry* pChild;