summaryrefslogtreecommitdiffstats
path: root/dbaccess/source/ui/misc/WNameMatch.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-09-26 12:17:53 +0200
committerNoel Grandin <noel@peralex.com>2013-10-01 10:08:43 +0200
commitd11ed5a57e23fcc8d59ec40e7f52c7f54f7241a4 (patch)
tree1cac73d4879d1349a7c849aad892fa14560c03ca /dbaccess/source/ui/misc/WNameMatch.cxx
parentconvert open-coded array into std::vector (diff)
downloadcore-d11ed5a57e23fcc8d59ec40e7f52c7f54f7241a4.tar.gz
core-d11ed5a57e23fcc8d59ec40e7f52c7f54f7241a4.zip
convert dbaccess module from String to OUString
Change-Id: I110c925f8d955dfd841cdd1092c13df4d8205393
Diffstat (limited to 'dbaccess/source/ui/misc/WNameMatch.cxx')
-rw-r--r--dbaccess/source/ui/misc/WNameMatch.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/dbaccess/source/ui/misc/WNameMatch.cxx b/dbaccess/source/ui/misc/WNameMatch.cxx
index 3464db87c6bc..79221d2aeee9 100644
--- a/dbaccess/source/ui/misc/WNameMatch.cxx
+++ b/dbaccess/source/ui/misc/WNameMatch.cxx
@@ -180,7 +180,8 @@ sal_Bool OWizNameMatching::LeavePage()
return sal_True;
}
-String OWizNameMatching::GetTitle() const { return String(ModuleRes(STR_WIZ_NAME_MATCHING_TITEL)); }
+OUString OWizNameMatching::GetTitle() const { return ModuleRes(STR_WIZ_NAME_MATCHING_TITEL); }
+
IMPL_LINK( OWizNameMatching, ButtonClickHdl, Button *, pButton )
{
SvTreeListEntry* pEntry = m_CTRL_LEFT.FirstSelected();
@@ -320,7 +321,7 @@ class OColumnString : public SvLBoxString
{
sal_Bool m_bReadOnly;
public:
- OColumnString( SvTreeListEntry* pEntry, sal_uInt16 nFlags, const String& rStr,sal_Bool _RO)
+ OColumnString( SvTreeListEntry* pEntry, sal_uInt16 nFlags, const OUString& rStr, sal_Bool _RO)
:SvLBoxString(pEntry,nFlags,rStr)
,m_bReadOnly(_RO)
{