From 782714683059ad50d8bb23e30566cbcaa2eaf414 Mon Sep 17 00:00:00 2001 From: Hans-Joachim Lankenau Date: Fri, 25 Jun 2004 17:29:48 +0000 Subject: INTEGRATION: CWS mozab04 (1.1.186); FILE MERGED 2004/04/13 09:15:20 windly 1.1.186.1: #1000# replace createFromAscii to RTL_CONSTASCII_USTRINGPARAM --- connectivity/source/drivers/mozab/MServices.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'connectivity/source') diff --git a/connectivity/source/drivers/mozab/MServices.cxx b/connectivity/source/drivers/mozab/MServices.cxx index 6dee7a8f4083..e79816134a63 100644 --- a/connectivity/source/drivers/mozab/MServices.cxx +++ b/connectivity/source/drivers/mozab/MServices.cxx @@ -2,9 +2,9 @@ * * $RCSfile: MServices.cxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: mmaher $ $Date: 2001-10-11 10:07:54 $ + * last change: $Author: hjs $ $Date: 2004-06-25 18:29:48 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -97,9 +97,9 @@ void REGISTER_PROVIDER( const Reference< ::com::sun::star::registry::XRegistryKey > & xKey) { OUString aMainKeyName; - aMainKeyName = OUString::createFromAscii("/"); + aMainKeyName = OUString( RTL_CONSTASCII_USTRINGPARAM("/")); aMainKeyName += aServiceImplName; - aMainKeyName += OUString::createFromAscii("/UNO/SERVICES"); + aMainKeyName += OUString( RTL_CONSTASCII_USTRINGPARAM("/UNO/SERVICES")); Reference< ::com::sun::star::registry::XRegistryKey > xNewKey( xKey->createKey(aMainKeyName) ); OSL_ENSURE(xNewKey.is(), "MOZAB::component_writeInfo : could not create a registry key !"); -- cgit