summaryrefslogtreecommitdiff
path: root/svx/source/form/fmpgeimp.cxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2005-04-13 07:29:22 +0000
committerOliver Bolte <obo@openoffice.org>2005-04-13 07:29:22 +0000
commit50fd70d47305282533670614ede9cbeb6b7df667 (patch)
tree007a0c94b96ce01d1e9b946d195c9c1d4597d245 /svx/source/form/fmpgeimp.cxx
parent9aa7252c38f5252cc559240c57d1fd4e4dcd8c9a (diff)
INTEGRATION: CWS visibility03 (1.24.44); FILE MERGED
2005/03/24 20:38:21 mhu 1.24.44.2: RESYNC: (1.24-1.26); FILE MERGED 2005/03/03 17:32:23 mhu 1.24.44.1: #i40092# Fixed string ctor (ResId) usage.
Diffstat (limited to 'svx/source/form/fmpgeimp.cxx')
-rw-r--r--svx/source/form/fmpgeimp.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/svx/source/form/fmpgeimp.cxx b/svx/source/form/fmpgeimp.cxx
index c7b37bec7a84..953d017782ca 100644
--- a/svx/source/form/fmpgeimp.cxx
+++ b/svx/source/form/fmpgeimp.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: fmpgeimp.cxx,v $
*
- * $Revision: 1.26 $
+ * $Revision: 1.27 $
*
- * last change: $Author: kz $ $Date: 2005-03-18 18:56:36 $
+ * last change: $Author: obo $ $Date: 2005-04-13 08:29:22 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -310,7 +310,7 @@ Reference< ::com::sun::star::form::XForm > FmFormPageImpl::getDefaultForm()
if (xForms->hasElements())
{
// suche die Standardform
- ::rtl::OUString ustrStdFormName = ::rtl::OUString(SVX_RES(RID_STR_STDFORMNAME));
+ ::rtl::OUString ustrStdFormName = ::rtl::OUString(String(SVX_RES(RID_STR_STDFORMNAME)));
if (xForms->hasByName(ustrStdFormName))
{
@@ -364,7 +364,7 @@ Reference< ::com::sun::star::form::XForm > FmFormPageImpl::getDefaultForm()
{
}
- ::rtl::OUString aName = ::rtl::OUString(SVX_RES(RID_STR_STDFORMNAME));
+ ::rtl::OUString aName (String(SVX_RES(RID_STR_STDFORMNAME)));
xSet->setPropertyValue(FM_PROP_NAME, makeAny(aName));
@@ -456,7 +456,7 @@ Reference< ::com::sun::star::form::XForm > FmFormPageImpl::placeInFormComponent
}
else
// ansonsten StandardformName verwenden
- aName = getUniqueName(::rtl::OUString(SVX_RES(RID_STR_STDFORMNAME)), xNamedSet);
+ aName = getUniqueName(::rtl::OUString(String(SVX_RES(RID_STR_STDFORMNAME))), xNamedSet);
xSet->setPropertyValue(FM_PROP_NAME, makeAny(aName));
@@ -609,7 +609,7 @@ Reference< XForm > FmFormPageImpl::findFormForDataSource(
aValue >>= aText;
if (!aText.getLength())
{
- aLabel.SearchAndReplace( getDefaultName( nClassId, xSI ), ::rtl::OUString(SVX_RES(nResId)) );
+ aLabel.SearchAndReplace( getDefaultName( nClassId, xSI ), ::rtl::OUString(String(SVX_RES(nResId)) ));
xSet->setPropertyValue( FM_PROP_LABEL, makeAny(::rtl::OUString(aLabel)) );
}
}