summaryrefslogtreecommitdiff
path: root/sw/source/ui/fldui
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-10-09 12:02:55 +0200
committerNoel Grandin <noel@peralex.com>2013-10-10 09:19:04 +0200
commit6b25dd2f914a7bdd4d39e21675fcedd049192b73 (patch)
treedf621ce971c31da7916392d40458a5c858130b54 /sw/source/ui/fldui
parent3acd7ab515ab6e97c9110b89d13136d94be5eef6 (diff)
convert sw/source/ui/inc/c*.hxx from String to OUString
Change-Id: I8b8c73a0ba9b1e40549c1832ed6ad5b630d4e620
Diffstat (limited to 'sw/source/ui/fldui')
-rw-r--r--sw/source/ui/fldui/changedb.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/ui/fldui/changedb.cxx b/sw/source/ui/fldui/changedb.cxx
index e71e3988135b..26000b2c46f9 100644
--- a/sw/source/ui/fldui/changedb.cxx
+++ b/sw/source/ui/fldui/changedb.cxx
@@ -134,11 +134,11 @@ void SwChangeDBDlg::FillDBPopup()
}
-SvTreeListEntry* SwChangeDBDlg::Insert(const String& rDBName)
+SvTreeListEntry* SwChangeDBDlg::Insert(const OUString& rDBName)
{
- String sDBName(rDBName.GetToken(0, DB_DELIM));
- String sTableName(rDBName.GetToken(1, DB_DELIM));
- sal_IntPtr nCommandType = rDBName.GetToken(2, DB_DELIM).ToInt32();
+ String sDBName(rDBName.getToken(0, DB_DELIM));
+ String sTableName(rDBName.getToken(1, DB_DELIM));
+ sal_IntPtr nCommandType = rDBName.getToken(2, DB_DELIM).toInt32();
SvTreeListEntry* pParent;
SvTreeListEntry* pChild;