From d11ed5a57e23fcc8d59ec40e7f52c7f54f7241a4 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 26 Sep 2013 12:17:53 +0200 Subject: convert dbaccess module from String to OUString Change-Id: I110c925f8d955dfd841cdd1092c13df4d8205393 --- dbaccess/source/ui/misc/WColumnSelect.cxx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'dbaccess/source/ui/misc/WColumnSelect.cxx') diff --git a/dbaccess/source/ui/misc/WColumnSelect.cxx b/dbaccess/source/ui/misc/WColumnSelect.cxx index bedf7c1c0b9f..abd4cc07f578 100644 --- a/dbaccess/source/ui/misc/WColumnSelect.cxx +++ b/dbaccess/source/ui/misc/WColumnSelect.cxx @@ -42,7 +42,8 @@ using namespace dbaui; namespace CopyTableOperation = ::com::sun::star::sdb::application::CopyTableOperation; -String OWizColumnSelect::GetTitle() const { return String(ModuleRes(STR_WIZ_COLUMN_SELECT_TITEL)); } +OUString OWizColumnSelect::GetTitle() const { return ModuleRes(STR_WIZ_COLUMN_SELECT_TITEL); } + OWizardPage::OWizardPage( Window* pParent, const ResId& rResId ) : TabPage(pParent,rResId) ,m_pParent(static_cast(pParent)) @@ -310,7 +311,7 @@ void OWizColumnSelect::moveColumn( ListBox* _pRight, if(_pRight == &m_lbNewColumnNames) { // we copy the column into the new format for the dest - OFieldDescription* pSrcField = static_cast(_pLeft->GetEntryData(_pLeft->GetEntryPos(String(_sColumnName)))); + OFieldDescription* pSrcField = static_cast(_pLeft->GetEntryData(_pLeft->GetEntryPos(OUString(_sColumnName)))); createNewColumn(_pRight,pSrcField,_rRightColumns,_sColumnName,_sExtraChars,_nMaxNameLen,_aCase); } else -- cgit