summaryrefslogtreecommitdiff
path: root/extensions/source/dbpilots/listcombowizard.cxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-07-27 17:01:36 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-07-28 16:45:48 +0100
commit5efc15f0006866ac4c422c1b2bde173ded47893f (patch)
tree119b46339aae67b9a5b1a76ea2a955a548e5016e /extensions/source/dbpilots/listcombowizard.cxx
parente39a959429234aef5348a8b5800b27c29de02a6f (diff)
reduce use of UniString from ResID ctor
Change-Id: I8d7619e7807ff2d400ec5c7fd181375130245728
Diffstat (limited to 'extensions/source/dbpilots/listcombowizard.cxx')
-rw-r--r--extensions/source/dbpilots/listcombowizard.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/extensions/source/dbpilots/listcombowizard.cxx b/extensions/source/dbpilots/listcombowizard.cxx
index 20eae70f083e..ca189c3410ab 100644
--- a/extensions/source/dbpilots/listcombowizard.cxx
+++ b/extensions/source/dbpilots/listcombowizard.cxx
@@ -77,11 +77,11 @@ namespace dbp
{
case FormComponentType::LISTBOX:
m_bListBox = sal_True;
- setTitleBase(String(ModuleRes(RID_STR_LISTWIZARD_TITLE)));
+ setTitleBase(ModuleRes(RID_STR_LISTWIZARD_TITLE).toString());
return sal_True;
case FormComponentType::COMBOBOX:
m_bListBox = sal_False;
- setTitleBase(String(ModuleRes(RID_STR_COMBOWIZARD_TITLE)));
+ setTitleBase(ModuleRes(RID_STR_COMBOWIZARD_TITLE).toString());
return sal_True;
}
return sal_False;
@@ -370,7 +370,7 @@ namespace dbp
,m_aDisplayedField (this, ModuleRes(ET_DISPLAYEDFIELD))
,m_aInfo (this, ModuleRes(FT_CONTENTFIELD_INFO))
{
- m_aInfo.SetText(String(ModuleRes( isListBox() ? STR_FIELDINFO_LISTBOX : STR_FIELDINFO_COMBOBOX)));
+ m_aInfo.SetText(ModuleRes( isListBox() ? STR_FIELDINFO_LISTBOX : STR_FIELDINFO_COMBOBOX).toString());
FreeResource();
m_aSelectTableField.SetSelectHdl(LINK(this, OContentFieldSelection, OnFieldSelected));
m_aSelectTableField.SetDoubleClickHdl(LINK(this, OContentFieldSelection, OnTableDoubleClicked));
@@ -517,7 +517,7 @@ namespace dbp
OComboDBFieldPage::OComboDBFieldPage( OControlWizard* _pParent )
:ODBFieldPage(_pParent)
{
- setDescriptionText(String(ModuleRes(RID_STR_COMBOWIZ_DBFIELD)));
+ setDescriptionText(ModuleRes(RID_STR_COMBOWIZ_DBFIELD).toString());
}
//---------------------------------------------------------------------