From e8eab43eebecfcaf277d01b1c99ea003199866e4 Mon Sep 17 00:00:00 2001 From: Philipp Riemer Date: Mon, 6 May 2013 19:17:14 +0200 Subject: cleanup whitespaces due to RTL_CONSTASCII_USTRINGPARAM removal In e2e2cc61144cb22227eebfadff0ea24b51ccfbd0 the method was removed automatically leaving several line breaks etc. as visual noise. --- stoc/source/javavm/javavm.cxx | 141 ++++------- stoc/source/registry_tdprovider/tdservice.cxx | 43 ++-- stoc/source/simpleregistry/simpleregistry.cxx | 325 +++++++++++--------------- 3 files changed, 194 insertions(+), 315 deletions(-) (limited to 'stoc') diff --git a/stoc/source/javavm/javavm.cxx b/stoc/source/javavm/javavm.cxx index 8d3da57e367c..daccbe6ea757 100644 --- a/stoc/source/javavm/javavm.cxx +++ b/stoc/source/javavm/javavm.cxx @@ -201,8 +201,7 @@ bool SingletonFactory::m_bDisposed = false; OUString serviceGetImplementationName() { - return OUString( - "com.sun.star.comp.stoc.JavaVirtualMachine"); + return OUString("com.sun.star.comp.stoc.JavaVirtualMachine"); } css::uno::Sequence< OUString > serviceGetSupportedServiceNames() @@ -257,8 +256,7 @@ bool askForRetry(css::uno::Any const & rException) if (xContext.is()) { css::uno::Reference< css::task::XInteractionHandler > xHandler; - xContext->getValueByName(OUString( - "java-vm.interaction-handler")) + xContext->getValueByName(OUString("java-vm.interaction-handler")) >>= xHandler; if (xHandler.is()) { @@ -369,8 +367,7 @@ void getDefaultLocaleFromConfig( { css::uno::Reference xConfRegistry = xSMgr->createInstanceWithContext( - OUString( - "com.sun.star.configuration.ConfigurationRegistry"), xCtx ); + OUString("com.sun.star.configuration.ConfigurationRegistry"), xCtx ); if(!xConfRegistry.is()) throw css::uno::RuntimeException( OUString("javavm.cxx: couldn't get ConfigurationRegistry"), 0); @@ -424,8 +421,7 @@ void getJavaPropsFromSafetySettings( { css::uno::Reference xConfRegistry = xSMgr->createInstanceWithContext( - OUString( - "com.sun.star.configuration.ConfigurationRegistry"), + OUString("com.sun.star.configuration.ConfigurationRegistry"), xCtx); if(!xConfRegistry.is()) throw css::uno::RuntimeException( @@ -598,8 +594,7 @@ JavaVirtualMachine::initialize(css::uno::Sequence< css::uno::Any > const & OUString(), static_cast< cppu::OWeakObject * >(this)); if (m_xUnoVirtualMachine.is()) throw css::uno::RuntimeException( - OUString( - "bad call to initialize"), + OUString("bad call to initialize"), static_cast< cppu::OWeakObject * >(this)); css::beans::NamedValue val; if (rArguments.getLength() == 1 && (rArguments[0] >>= val) && val.Name == "UnoVirtualMachine" ) @@ -627,16 +622,14 @@ JavaVirtualMachine::initialize(css::uno::Sequence< css::uno::Any > const & m_xUnoVirtualMachine = new jvmaccess::UnoVirtualMachine(vm, 0); } catch (jvmaccess::UnoVirtualMachine::CreationException &) { throw css::uno::RuntimeException( - OUString( - "jvmaccess::UnoVirtualMachine::CreationException"), + OUString("jvmaccess::UnoVirtualMachine::CreationException"), static_cast< cppu::OWeakObject * >(this)); } } } if (!m_xUnoVirtualMachine.is()) { throw css::lang::IllegalArgumentException( - OUString( - "sequence of exactly one any containing either (a) a" + OUString("sequence of exactly one any containing either (a) a" " com.sun.star.beans.NamedValue with Name" " \"UnoVirtualMachine\" and Value a hyper representing a" " non-null pointer to a jvmaccess:UnoVirtualMachine, or (b)" @@ -785,9 +778,8 @@ JavaVirtualMachine::getJavaVM(css::uno::Sequence< sal_Int8 > const & rProcessId) //%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. //Please install a JRE and restart %PRODUCTNAME. css::java::JavaNotFoundException exc( - OUString( - "JavaVirtualMachine::getJavaVM failed because" - " No suitable JRE found!"), + OUString("JavaVirtualMachine::getJavaVM failed because" + " No suitable JRE found!"), static_cast< cppu::OWeakObject * >(this)); askForRetry(css::uno::makeAny(exc)); return css::uno::Any(); @@ -796,9 +788,8 @@ JavaVirtualMachine::getJavaVM(css::uno::Sequence< sal_Int8 > const & rProcessId) { //An unexpected error occurred throw css::uno::RuntimeException( - OUString( - "[JavaVirtualMachine]:An unexpected error occurred" - " while searching for a Java!"), 0); + OUString("[JavaVirtualMachine]:An unexpected error occurred" + " while searching for a Java!"), 0); } } case JFW_E_INVALID_SETTINGS: @@ -808,9 +799,8 @@ JavaVirtualMachine::getJavaVM(css::uno::Sequence< sal_Int8 > const & rProcessId) // - Options - %PRODUCTNAME - Java, select the Java runtime environment // you want to have used by %PRODUCTNAME. css::java::InvalidJavaSettingsException exc( - OUString( - "JavaVirtualMachine::getJavaVM failed because" - " Java settings have changed!"), + OUString("JavaVirtualMachine::getJavaVM failed because" + " Java settings have changed!"), static_cast< cppu::OWeakObject * >(this)); askForRetry(css::uno::makeAny(exc)); return css::uno::Any(); @@ -822,9 +812,7 @@ JavaVirtualMachine::getJavaVM(css::uno::Sequence< sal_Int8 > const & rProcessId) //this task. However, use of a JRE has been disabled. Do you want to //enable the use of a JRE now? css::java::JavaDisabledException exc( - OUString( - "JavaVirtualMachine::getJavaVM failed because" - " Java is disabled!"), + OUString("JavaVirtualMachine::getJavaVM failed because Java is disabled!"), static_cast< cppu::OWeakObject * >(this)); if( ! askForRetry(css::uno::makeAny(exc))) return css::uno::Any(); @@ -863,9 +851,7 @@ JavaVirtualMachine::getJavaVM(css::uno::Sequence< sal_Int8 > const & rProcessId) //is defective. Please select another version or install a new JRE //and select it under Tools - Options - %PRODUCTNAME - Java. css::java::JavaVMCreationFailureException exc( - OUString( - "JavaVirtualMachine::getJavaVM failed because" - " Java is defective!"), + OUString("JavaVirtualMachine::getJavaVM failed because Java is defective!"), static_cast< cppu::OWeakObject * >(this), 0); askForRetry(css::uno::makeAny(exc)); return css::uno::Any(); @@ -882,9 +868,8 @@ JavaVirtualMachine::getJavaVM(css::uno::Sequence< sal_Int8 > const & rProcessId) //For the selected Java runtime environment to work properly, //%PRODUCTNAME must be restarted. Please restart %PRODUCTNAME now. css::java::RestartRequiredException exc( - OUString( - "JavaVirtualMachine::getJavaVM failed because" - "Office must be restarted before Java can be used!"), + OUString("JavaVirtualMachine::getJavaVM failed because " + "Office must be restarted before Java can be used!"), static_cast< cppu::OWeakObject * >(this)); askForRetry(css::uno::makeAny(exc)); return css::uno::Any(); @@ -893,9 +878,8 @@ JavaVirtualMachine::getJavaVM(css::uno::Sequence< sal_Int8 > const & rProcessId) //RuntimeException: error is somewhere in the java framework. //An unexpected error occurred throw css::uno::RuntimeException( - OUString( - "[JavaVirtualMachine]:An unexpected error occurred" - " while starting Java!"), 0); + OUString("[JavaVirtualMachine]:An unexpected error occurred" + " while starting Java!"), 0); } if (bStarted) @@ -922,9 +906,7 @@ JavaVirtualMachine::getJavaVM(css::uno::Sequence< sal_Int8 > const & rProcessId) setUpUnoVirtualMachine(guard.getEnvironment()); } catch (jvmaccess::VirtualMachine::AttachGuard::CreationException &) { throw css::uno::RuntimeException( - OUString( - "jvmaccess::VirtualMachine::AttachGuard::" - "CreationException occurred"), + OUString("jvmaccess::VirtualMachine::AttachGuard::CreationException occurred"), static_cast< cppu::OWeakObject * >(this)); } } @@ -932,9 +914,8 @@ JavaVirtualMachine::getJavaVM(css::uno::Sequence< sal_Int8 > const & rProcessId) default: // RETURN_JAVAVM if (m_pJavaVm == 0) { throw css::uno::RuntimeException( - OUString( - "JavaVirtualMachine service was initialized in a way" - " that the requested JavaVM pointer is not available"), + OUString("JavaVirtualMachine service was initialized in a way" + " that the requested JavaVM pointer is not available"), static_cast< cppu::OWeakObject * >(this)); } return css::uno::makeAny(reinterpret_cast< sal_IntPtr >(m_pJavaVm)); @@ -1002,9 +983,7 @@ void SAL_CALL JavaVirtualMachine::registerThread() OUString(), static_cast< cppu::OWeakObject * >(this)); if (!m_xUnoVirtualMachine.is()) throw css::uno::RuntimeException( - OUString( - "JavaVirtualMachine::registerThread:" - " null VirtualMachine"), + OUString("JavaVirtualMachine::registerThread: null VirtualMachine"), static_cast< cppu::OWeakObject * >(this)); GuardStack * pStack = static_cast< GuardStack * >(m_aAttachGuards.getData()); @@ -1022,9 +1001,8 @@ void SAL_CALL JavaVirtualMachine::registerThread() catch (jvmaccess::VirtualMachine::AttachGuard::CreationException &) { throw css::uno::RuntimeException( - OUString( - "JavaVirtualMachine::registerThread: jvmaccess::" - "VirtualMachine::AttachGuard::CreationException"), + OUString("JavaVirtualMachine::registerThread: jvmaccess::" + "VirtualMachine::AttachGuard::CreationException"), static_cast< cppu::OWeakObject * >(this)); } } @@ -1038,17 +1016,13 @@ void SAL_CALL JavaVirtualMachine::revokeThread() OUString(), static_cast< cppu::OWeakObject * >(this)); if (!m_xUnoVirtualMachine.is()) throw css::uno::RuntimeException( - OUString( - "JavaVirtualMachine::revokeThread:" - " null VirtualMachine"), + OUString("JavaVirtualMachine::revokeThread: null VirtualMachine"), static_cast< cppu::OWeakObject * >(this)); GuardStack * pStack = static_cast< GuardStack * >(m_aAttachGuards.getData()); if (pStack == 0 || pStack->empty()) throw css::uno::RuntimeException( - OUString( - "JavaVirtualMachine::revokeThread:" - " no matching registerThread"), + OUString("JavaVirtualMachine::revokeThread: no matching registerThread"), static_cast< cppu::OWeakObject * >(this)); delete pStack->top(); pStack->pop(); @@ -1106,74 +1080,62 @@ void SAL_CALL JavaVirtualMachine::elementReplaced( } else if ( aAccessor == "ooInetHTTPProxyName" ) { - aPropertyName = OUString( - "http.proxyHost"); + aPropertyName = OUString("http.proxyHost"); rEvent.Element >>= aPropertyValue; } else if ( aAccessor == "ooInetHTTPProxyPort" ) { - aPropertyName - = OUString("http.proxyPort"); + aPropertyName = OUString("http.proxyPort"); sal_Int32 n = 0; rEvent.Element >>= n; aPropertyValue = OUString::valueOf(n); } else if ( aAccessor == "ooInetHTTPSProxyName" ) { - aPropertyName = OUString( - "https.proxyHost"); + aPropertyName = OUString("https.proxyHost"); rEvent.Element >>= aPropertyValue; } else if ( aAccessor == "ooInetHTTPSProxyPort" ) { - aPropertyName - = OUString("https.proxyPort"); + aPropertyName = OUString("https.proxyPort"); sal_Int32 n = 0; rEvent.Element >>= n; aPropertyValue = OUString::valueOf(n); } else if ( aAccessor == "ooInetFTPProxyName" ) { - aPropertyName = OUString( - "ftp.proxyHost"); + aPropertyName = OUString("ftp.proxyHost"); rEvent.Element >>= aPropertyValue; } else if ( aAccessor == "ooInetFTPProxyPort" ) { - aPropertyName = OUString( - "ftp.proxyPort"); + aPropertyName = OUString("ftp.proxyPort"); sal_Int32 n = 0; rEvent.Element >>= n; aPropertyValue = OUString::valueOf(n); } else if ( aAccessor == "ooInetNoProxy" ) { - aPropertyName = OUString( - "http.nonProxyHosts"); - aPropertyName2 = OUString( - "ftp.nonProxyHosts"); + aPropertyName = OUString("http.nonProxyHosts"); + aPropertyName2 = OUString("ftp.nonProxyHosts"); rEvent.Element >>= aPropertyValue; aPropertyValue = aPropertyValue.replace(';', '|'); } else if ( aAccessor == "NetAccess" ) { - aPropertyName = OUString( - "appletviewer.security.mode"); + aPropertyName = OUString("appletviewer.security.mode"); sal_Int32 n = 0; if (rEvent.Element >>= n) switch (n) { case 0: - aPropertyValue = OUString( - "host"); + aPropertyValue = OUString("host"); break; case 1: - aPropertyValue = OUString( - "unrestricted"); + aPropertyValue = OUString("unrestricted"); break; case 3: - aPropertyValue = OUString( - "none"); + aPropertyValue = OUString("none"); break; } else @@ -1182,16 +1144,13 @@ void SAL_CALL JavaVirtualMachine::elementReplaced( } else if ( aAccessor == "Security" ) { - aPropertyName = OUString( - "stardiv.security.disableSecurity"); + aPropertyName = OUString("stardiv.security.disableSecurity"); sal_Bool b = sal_Bool(); if (rEvent.Element >>= b) if (b) - aPropertyValue = OUString( - "false"); + aPropertyValue = OUString("false"); else - aPropertyValue = OUString( - "true"); + aPropertyValue = OUString("true"); else return; bSecurityChanged = true; @@ -1320,9 +1279,7 @@ void SAL_CALL JavaVirtualMachine::elementReplaced( catch (jvmaccess::VirtualMachine::AttachGuard::CreationException &) { throw css::uno::RuntimeException( - OUString( - "jvmaccess::VirtualMachine::AttachGuard::" - "CreationException"), + OUString("jvmaccess::VirtualMachine::AttachGuard::CreationException"), 0); } } @@ -1404,8 +1361,7 @@ void JavaVirtualMachine::registerConfigChangesListener() m_xInetConfiguration = css::uno::Reference< css::container::XContainer >( xConfigProvider->createInstanceWithArguments( - OUString( - "com.sun.star.configuration.ConfigurationAccess"), + OUString("com.sun.star.configuration.ConfigurationAccess"), aArguments), css::uno::UNO_QUERY); @@ -1429,8 +1385,7 @@ void JavaVirtualMachine::registerConfigChangesListener() m_xJavaConfiguration = css::uno::Reference< css::container::XContainer >( xConfigProvider->createInstanceWithArguments( - OUString( - "com.sun.star.configuration.ConfigurationAccess"), + OUString("com.sun.star.configuration.ConfigurationAccess"), aArguments2), css::uno::UNO_QUERY); @@ -1589,8 +1544,7 @@ void JavaVirtualMachine::setUpUnoVirtualMachine(JNIEnv * environment) { OUString("$URE_INTERNAL_JAVA_DIR/")); } catch (css::lang::IllegalArgumentException &) { throw css::uno::RuntimeException( - OUString( - "com::sun::star::lang::IllegalArgumentException"), + OUString("com::sun::star::lang::IllegalArgumentException"), static_cast< cppu::OWeakObject * >(this)); } OUString classPath; @@ -1691,8 +1645,7 @@ void JavaVirtualMachine::setUpUnoVirtualMachine(JNIEnv * environment) { m_xVirtualMachine, cl2); } catch (jvmaccess::UnoVirtualMachine::CreationException &) { throw css::uno::RuntimeException( - OUString( - "jvmaccess::UnoVirtualMachine::CreationException"), + OUString("jvmaccess::UnoVirtualMachine::CreationException"), static_cast< cppu::OWeakObject * >(this)); } } diff --git a/stoc/source/registry_tdprovider/tdservice.cxx b/stoc/source/registry_tdprovider/tdservice.cxx index 926e31ad0fa1..6e19ad70ed63 100644 --- a/stoc/source/registry_tdprovider/tdservice.cxx +++ b/stoc/source/registry_tdprovider/tdservice.cxx @@ -337,8 +337,7 @@ ServiceTypeDescriptionImpl::getConstructors() throw (RuntimeException) { || reader.getMethodExceptionCount(i) != 0))) { throw RuntimeException( - OUString( - "Service has bad constructors"), + OUString("Service has bad constructors"), static_cast< OWeakObject * >(this)); } (*ctors)[i] = new Constructor( @@ -364,8 +363,7 @@ void ServiceTypeDescriptionImpl::getReferences() sal_uInt16 superTypes = aReader.getSuperTypeCount(); if (superTypes > 1) { throw RuntimeException( - OUString( - "Service has more than one supertype"), + OUString("Service has more than one supertype"), static_cast< OWeakObject * >(this)); } if (superTypes == 1) { @@ -373,9 +371,8 @@ void ServiceTypeDescriptionImpl::getReferences() if ( aReader.getReferenceCount() != 0 || aReader.getFieldCount() != 0 ) throw RuntimeException( - OUString( - "Service is single-interface--based but also has" - " references and/or properties" ), + OUString("Service is single-interface--based but also has" + " references and/or properties" ), static_cast< OWeakObject * >( this ) ); Reference< XTypeDescription > ifc; try @@ -385,17 +382,15 @@ void ServiceTypeDescriptionImpl::getReferences() catch ( NoSuchElementException const & e ) { throw RuntimeException( - OUString( - "com.sun.star.container.NoSuchElementException: " ) + OUString("com.sun.star.container.NoSuchElementException: " ) + e.Message, static_cast< OWeakObject * >( this ) ); } OSL_ASSERT(ifc.is()); if (resolveTypedefs(ifc)->getTypeClass() != TypeClass_INTERFACE) { throw RuntimeException( - OUString( - "Single-interface--based service is not based on" - " interface type" ), + OUString("Single-interface--based service is not based on" + " interface type" ), static_cast< OWeakObject * >( this ) ); } MutexGuard guard(getMutex()); @@ -437,9 +432,7 @@ void ServiceTypeDescriptionImpl::getReferences() catch ( NoSuchElementException const & e ) { throw RuntimeException( - OUString( - "com.sun.star.container." - "NoSuchElementException: " ) + OUString("com.sun.star.container.NoSuchElementException: " ) + e.Message, static_cast< OWeakObject * >( this ) ); } @@ -450,8 +443,7 @@ void ServiceTypeDescriptionImpl::getReferences() // optional service if ( !( aTypeDesc >>= aOptionalServices[ nOS ] ) ) throw RuntimeException( - OUString( - "Service 'export' is not a service" ), + OUString("Service 'export' is not a service" ), static_cast< OWeakObject * >( this ) ); nOS++; } @@ -460,8 +452,7 @@ void ServiceTypeDescriptionImpl::getReferences() // mandatory service if ( !( aTypeDesc >>= aMandatoryServices[ nMS ] ) ) throw RuntimeException( - OUString( - "Service 'export' is not a service" ), + OUString("Service 'export' is not a service" ), static_cast< OWeakObject * >( this ) ); nMS++; } @@ -479,9 +470,7 @@ void ServiceTypeDescriptionImpl::getReferences() catch ( NoSuchElementException const & e ) { throw RuntimeException( - OUString( - "com.sun.star.container." - "NoSuchElementException: " ) + OUString("com.sun.star.container.NoSuchElementException: " ) + e.Message, static_cast< OWeakObject * >( this ) ); } @@ -492,9 +481,8 @@ void ServiceTypeDescriptionImpl::getReferences() // optional interface if ( !( aTypeDesc >>= aOptionalInterfaces[ nOI ] ) ) throw RuntimeException( - OUString( - "Service 'supports' is not an" - " interface" ), + OUString("Service 'supports' is not an" + " interface" ), static_cast< OWeakObject * >( this ) ); nOI++; } @@ -503,9 +491,8 @@ void ServiceTypeDescriptionImpl::getReferences() // mandatory interface if ( !( aTypeDesc >>= aMandatoryInterfaces[ nMI ] ) ) throw RuntimeException( - OUString( - "Service 'supports' is not an" - " interface" ), + OUString("Service 'supports' is not an" + " interface" ), static_cast< OWeakObject * >( this ) ); nMI++; } diff --git a/stoc/source/simpleregistry/simpleregistry.cxx b/stoc/source/simpleregistry/simpleregistry.cxx index e9bcef7a5d4d..bd6b308ca240 100644 --- a/stoc/source/simpleregistry/simpleregistry.cxx +++ b/stoc/source/simpleregistry/simpleregistry.cxx @@ -230,14 +230,12 @@ private: virtual void SAL_CALL deleteLink(OUString const & rLinkName) throw ( css::registry::InvalidRegistryException, css::uno::RuntimeException); - virtual OUString SAL_CALL getLinkTarget( - OUString const & rLinkName) + virtual OUString SAL_CALL getLinkTarget(OUString const & rLinkName) throw ( css::registry::InvalidRegistryException, css::uno::RuntimeException); - virtual OUString SAL_CALL getResolvedName( - OUString const & aKeyName) + virtual OUString SAL_CALL getResolvedName(OUString const & aKeyName) throw ( css::registry::InvalidRegistryException, css::uno::RuntimeException); @@ -271,9 +269,8 @@ css::registry::RegistryKeyType Key::getKeyType(OUString const & rKeyName) RegError err = key_.getKeyType(rKeyName, &type); if (err != REG_NO_ERROR) { throw css::registry::InvalidRegistryException( - (OUString( - "com.sun.star.registry.SimpleRegistry key getKeyType:" - " underlying RegistryKey::getKeyType() = ") + + (OUString("com.sun.star.registry.SimpleRegistry key getKeyType:" + " underlying RegistryKey::getKeyType() = ") + OUString::number(err)), static_cast< OWeakObject * >(this)); } @@ -303,9 +300,8 @@ css::registry::RegistryValueType Key::getValueType() break; default: throw css::registry::InvalidRegistryException( - (OUString( - "com.sun.star.registry.SimpleRegistry key getValueType:" - " underlying RegistryKey::getValueInfo() = ") + + (OUString("com.sun.star.registry.SimpleRegistry key getValueType:" + " underlying RegistryKey::getValueInfo() = ") + OUString::number(err)), static_cast< OWeakObject * >(this)); } @@ -344,15 +340,13 @@ sal_Int32 Key::getLongValue() throw ( break; case REG_INVALID_VALUE: throw css::registry::InvalidValueException( - OUString( - "com.sun.star.registry.SimpleRegistry key getLongValue:" - " underlying RegistryKey::getValue() = REG_INVALID_VALUE"), + OUString("com.sun.star.registry.SimpleRegistry key getLongValue:" + " underlying RegistryKey::getValue() = REG_INVALID_VALUE"), static_cast< OWeakObject * >(this)); default: throw css::registry::InvalidRegistryException( - (OUString( - "com.sun.star.registry.SimpleRegistry key getLongValue:" - " underlying RegistryKey::getValue() = ") + + (OUString("com.sun.star.registry.SimpleRegistry key getLongValue:" + " underlying RegistryKey::getValue() = ") + OUString::number(err)), static_cast< OWeakObject * >(this)); } @@ -367,9 +361,8 @@ void Key::setLongValue(sal_Int32 value) OUString(), RG_VALUETYPE_LONG, &value, sizeof (sal_Int32)); if (err != REG_NO_ERROR) { throw css::registry::InvalidRegistryException( - (OUString( - "com.sun.star.registry.SimpleRegistry key setLongValue:" - " underlying RegistryKey::setValue() = ") + + (OUString("com.sun.star.registry.SimpleRegistry key setLongValue:" + " underlying RegistryKey::setValue() = ") + OUString::number(err)), static_cast< OWeakObject * >(this)); } @@ -389,25 +382,22 @@ css::uno::Sequence< sal_Int32 > Key::getLongListValue() throw ( return css::uno::Sequence< sal_Int32 >(); case REG_INVALID_VALUE: throw css::registry::InvalidValueException( - OUString( - "com.sun.star.registry.SimpleRegistry key getLongListValue:" - " underlying RegistryKey::getLongListValue() =" - " REG_INVALID_VALUE"), + OUString("com.sun.star.registry.SimpleRegistry key getLongListValue:" + " underlying RegistryKey::getLongListValue() =" + " REG_INVALID_VALUE"), static_cast< OWeakObject * >(this)); default: throw css::registry::InvalidRegistryException( - (OUString( - "com.sun.star.registry.SimpleRegistry key getLongListValue:" - " underlying RegistryKey::getLongListValue() = ") + + (OUString("com.sun.star.registry.SimpleRegistry key getLongListValue:" + " underlying RegistryKey::getLongListValue() = ") + OUString::number(err)), static_cast< OWeakObject * >(this)); } sal_uInt32 n = list.getLength(); if (n > SAL_MAX_INT32) { throw css::registry::InvalidValueException( - OUString( - "com.sun.star.registry.SimpleRegistry key getLongListValue:" - " underlying RegistryKey::getLongListValue() too large"), + OUString("com.sun.star.registry.SimpleRegistry key getLongListValue:" + " underlying RegistryKey::getLongListValue() too large"), static_cast< OWeakObject * >(this)); } css::uno::Sequence< sal_Int32 > value(static_cast< sal_Int32 >(n)); @@ -430,9 +420,8 @@ void Key::setLongListValue(css::uno::Sequence< sal_Int32 > const & seqValue) static_cast< sal_uInt32 >(list.size())); if (err != REG_NO_ERROR) { throw css::registry::InvalidRegistryException( - (OUString( - "com.sun.star.registry.SimpleRegistry key setLongListValue:" - " underlying RegistryKey::setLongListValue() = ") + + (OUString("com.sun.star.registry.SimpleRegistry key setLongListValue:" + " underlying RegistryKey::setLongListValue() = ") + OUString::number(err)), static_cast< OWeakObject * >(this)); } @@ -448,52 +437,46 @@ OUString Key::getAsciiValue() throw ( RegError err = key_.getValueInfo(OUString(), &type, &size); if (err != REG_NO_ERROR) { throw css::registry::InvalidRegistryException( - (OUString( - "com.sun.star.registry.SimpleRegistry key getAsciiValue:" - " underlying RegistryKey::getValueInfo() = ") + + (OUString("com.sun.star.registry.SimpleRegistry key getAsciiValue:" + " underlying RegistryKey::getValueInfo() = ") + OUString::number(err)), static_cast< OWeakObject * >(this)); } if (type != RG_VALUETYPE_STRING) { throw css::registry::InvalidValueException( - (OUString( - "com.sun.star.registry.SimpleRegistry key getAsciiValue:" - " underlying RegistryKey type = ") + + (OUString("com.sun.star.registry.SimpleRegistry key getAsciiValue:" + " underlying RegistryKey type = ") + OUString::number(type)), static_cast< OWeakObject * >(this)); } // size contains terminating null (error in underlying registry.cxx): if (size == 0) { throw css::registry::InvalidValueException( - OUString( - "com.sun.star.registry.SimpleRegistry key getAsciiValue:" - " underlying RegistryKey size 0 cannot happen due to" - " design error"), + OUString("com.sun.star.registry.SimpleRegistry key getAsciiValue:" + " underlying RegistryKey size 0 cannot happen due to" + " design error"), static_cast< OWeakObject * >(this)); } if (size > SAL_MAX_INT32) { throw css::registry::InvalidValueException( - OUString( - "com.sun.star.registry.SimpleRegistry key getAsciiValue:" - " underlying RegistryKey size too large"), + OUString("com.sun.star.registry.SimpleRegistry key getAsciiValue:" + " underlying RegistryKey size too large"), static_cast< OWeakObject * >(this)); } std::vector< char > list(size); err = key_.getValue(OUString(), &list[0]); if (err != REG_NO_ERROR) { throw css::registry::InvalidRegistryException( - (OUString( - "com.sun.star.registry.SimpleRegistry key getAsciiValue:" - " underlying RegistryKey::getValue() = ") + + (OUString("com.sun.star.registry.SimpleRegistry key getAsciiValue:" + " underlying RegistryKey::getValue() = ") + OUString::number(err)), static_cast< OWeakObject * >(this)); } if (list[size - 1] != '\0') { throw css::registry::InvalidValueException( - OUString( - "com.sun.star.registry.SimpleRegistry key getAsciiValue:" - " underlying RegistryKey value must be null-terminated due" - " to design error"), + OUString("com.sun.star.registry.SimpleRegistry key getAsciiValue:" + " underlying RegistryKey value must be null-terminated due" + " to design error"), static_cast< OWeakObject * >(this)); } OUString value; @@ -505,9 +488,8 @@ OUString Key::getAsciiValue() throw ( RTL_TEXTTOUNICODE_FLAGS_INVALID_ERROR))) { throw css::registry::InvalidValueException( - OUString( - "com.sun.star.registry.SimpleRegistry key getAsciiValue:" - " underlying RegistryKey not UTF-8"), + OUString("com.sun.star.registry.SimpleRegistry key getAsciiValue:" + " underlying RegistryKey not UTF-8"), static_cast< OWeakObject * >(this)); } return value; @@ -524,9 +506,8 @@ void Key::setAsciiValue(OUString const & value) RTL_UNICODETOTEXT_FLAGS_INVALID_ERROR))) { throw css::uno::RuntimeException( - OUString( - "com.sun.star.registry.SimpleRegistry key setAsciiValue:" - " value not UTF-16"), + OUString("com.sun.star.registry.SimpleRegistry key setAsciiValue:" + " value not UTF-16"), static_cast< OWeakObject * >(this)); } RegError err = key_.setValue( @@ -535,9 +516,8 @@ void Key::setAsciiValue(OUString const & value) // +1 for terminating null (error in underlying registry.cxx) if (err != REG_NO_ERROR) { throw css::registry::InvalidRegistryException( - (OUString( - "com.sun.star.registry.SimpleRegistry key setAsciiValue:" - " underlying RegistryKey::setValue() = ") + + (OUString("com.sun.star.registry.SimpleRegistry key setAsciiValue:" + " underlying RegistryKey::setValue() = ") + OUString::number(err)), static_cast< OWeakObject * >(this)); } @@ -557,27 +537,24 @@ css::uno::Sequence< OUString > Key::getAsciiListValue() throw ( return css::uno::Sequence< OUString >(); case REG_INVALID_VALUE: throw css::registry::InvalidValueException( - OUString( - "com.sun.star.registry.SimpleRegistry key" - " getAsciiListValue: underlying" - " RegistryKey::getStringListValue() = REG_INVALID_VALUE"), + OUString("com.sun.star.registry.SimpleRegistry key" + " getAsciiListValue: underlying" + " RegistryKey::getStringListValue() = REG_INVALID_VALUE"), static_cast< OWeakObject * >(this)); default: throw css::registry::InvalidRegistryException( - (OUString( - "com.sun.star.registry.SimpleRegistry key" - " getAsciiListValue: underlying" - " RegistryKey::getStringListValue() = ") + + (OUString("com.sun.star.registry.SimpleRegistry key" + " getAsciiListValue: underlying" + " RegistryKey::getStringListValue() = ") + OUString::number(err)), static_cast< OWeakObject * >(this)); } sal_uInt32 n = list.getLength(); if (n > SAL_MAX_INT32) { throw css::registry::InvalidValueException( - OUString( - "com.sun.star.registry.SimpleRegistry key" - " getAsciiListValue: underlying" - " RegistryKey::getStringListValue() too large"), + OUString("com.sun.star.registry.SimpleRegistry key" + " getAsciiListValue: underlying" + " RegistryKey::getStringListValue() too large"), static_cast< OWeakObject * >(this)); } css::uno::Sequence< OUString > value(static_cast< sal_Int32 >(n)); @@ -592,10 +569,9 @@ css::uno::Sequence< OUString > Key::getAsciiListValue() throw ( RTL_TEXTTOUNICODE_FLAGS_INVALID_ERROR))) { throw css::registry::InvalidValueException( - OUString( - "com.sun.star.registry.SimpleRegistry key" - " getAsciiListValue: underlying RegistryKey not" - " UTF-8"), + OUString("com.sun.star.registry.SimpleRegistry key" + " getAsciiListValue: underlying RegistryKey not" + " UTF-8"), static_cast< OWeakObject * >(this)); } } @@ -616,9 +592,8 @@ void Key::setAsciiListValue( RTL_UNICODETOTEXT_FLAGS_INVALID_ERROR))) { throw css::uno::RuntimeException( - OUString( - "com.sun.star.registry.SimpleRegistry key" - " setAsciiListValue: value not UTF-16"), + OUString("com.sun.star.registry.SimpleRegistry key" + " setAsciiListValue: value not UTF-16"), static_cast< OWeakObject * >(this)); } list.push_back(utf8); @@ -634,10 +609,9 @@ void Key::setAsciiListValue( static_cast< sal_uInt32 >(list2.size())); if (err != REG_NO_ERROR) { throw css::registry::InvalidRegistryException( - (OUString( - "com.sun.star.registry.SimpleRegistry key" - " setAsciiListValue: underlying" - " RegistryKey::setStringListValue() = ") + + (OUString("com.sun.star.registry.SimpleRegistry key" + " setAsciiListValue: underlying" + " RegistryKey::setStringListValue() = ") + OUString::number(err)), static_cast< OWeakObject * >(this)); } @@ -653,17 +627,15 @@ OUString Key::getStringValue() throw ( RegError err = key_.getValueInfo(OUString(), &type, &size); if (err != REG_NO_ERROR) { throw css::registry::InvalidRegistryException( - (OUString( - "com.sun.star.registry.SimpleRegistry key getStringValue:" - " underlying RegistryKey::getValueInfo() = ") + + (OUString("com.sun.star.registry.SimpleRegistry key getStringValue:" + " underlying RegistryKey::getValueInfo() = ") + OUString::number(err)), static_cast< OWeakObject * >(this)); } if (type != RG_VALUETYPE_UNICODE) { throw css::registry::InvalidValueException( - (OUString( - "com.sun.star.registry.SimpleRegistry key getStringValue:" - " underlying RegistryKey type = ") + + (OUString("com.sun.star.registry.SimpleRegistry key getStringValue:" + " underlying RegistryKey type = ") + OUString::number(type)), static_cast< OWeakObject * >(this)); } @@ -671,35 +643,31 @@ OUString Key::getStringValue() throw ( // registry.cxx): if (size == 0 || (size & 1) == 1) { throw css::registry::InvalidValueException( - OUString( - "com.sun.star.registry.SimpleRegistry key getStringValue:" - " underlying RegistryKey size 0 or odd cannot happen due to" - " design error"), + OUString("com.sun.star.registry.SimpleRegistry key getStringValue:" + " underlying RegistryKey size 0 or odd cannot happen due to" + " design error"), static_cast< OWeakObject * >(this)); } if (size > SAL_MAX_INT32) { throw css::registry::InvalidValueException( - OUString( - "com.sun.star.registry.SimpleRegistry key getStringValue:" - " underlying RegistryKey size too large"), + OUString("com.sun.star.registry.SimpleRegistry key getStringValue:" + " underlying RegistryKey size too large"), static_cast< OWeakObject * >(this)); } std::vector< sal_Unicode > list(size); err = key_.getValue(OUString(), &list[0]); if (err != REG_NO_ERROR) { throw css::registry::InvalidRegistryException( - (OUString( - "com.sun.star.registry.SimpleRegistry key getStringValue:" - " underlying RegistryKey::getValue() = ") + + (OUString("com.sun.star.registry.SimpleRegistry key getStringValue:" + " underlying RegistryKey::getValue() = ") + OUString::number(err)), static_cast< OWeakObject * >(this)); } if (list[size/2 - 1] != 0) { throw css::registry::InvalidValueException( - OUString( - "com.sun.star.registry.SimpleRegistry key getStringValue:" - " underlying RegistryKey value must be null-terminated due" - " to design error"), + OUString("com.sun.star.registry.SimpleRegistry key getStringValue:" + " underlying RegistryKey value must be null-terminated due" + " to design error"), static_cast< OWeakObject * >(this)); } return OUString(&list[0], static_cast< sal_Int32 >(size/2 - 1)); @@ -716,9 +684,8 @@ void Key::setStringValue(OUString const & value) // +1 for terminating null (error in underlying registry.cxx) if (err != REG_NO_ERROR) { throw css::registry::InvalidRegistryException( - (OUString( - "com.sun.star.registry.SimpleRegistry key setStringValue:" - " underlying RegistryKey::setValue() = ") + + (OUString("com.sun.star.registry.SimpleRegistry key setStringValue:" + " underlying RegistryKey::setValue() = ") + OUString::number(err)), static_cast< OWeakObject * >(this)); } @@ -738,27 +705,24 @@ css::uno::Sequence< OUString > Key::getStringListValue() throw ( return css::uno::Sequence< OUString >(); case REG_INVALID_VALUE: throw css::registry::InvalidValueException( - OUString( - "com.sun.star.registry.SimpleRegistry key" - " getStringListValue: underlying" - " RegistryKey::getUnicodeListValue() = REG_INVALID_VALUE"), + OUString("com.sun.star.registry.SimpleRegistry key" + " getStringListValue: underlying" + " RegistryKey::getUnicodeListValue() = REG_INVALID_VALUE"), static_cast< OWeakObject * >(this)); default: throw css::registry::InvalidRegistryException( - (OUString( - "com.sun.star.registry.SimpleRegistry key" - " getStringListValue: underlying" - " RegistryKey::getUnicodeListValue() = ") + + (OUString("com.sun.star.registry.SimpleRegistry key" + " getStringListValue: underlying" + " RegistryKey::getUnicodeListValue() = ") + OUString::number(err)), static_cast< OWeakObject * >(this)); } sal_uInt32 n = list.getLength(); if (n > SAL_MAX_INT32) { throw css::registry::InvalidValueException( - OUString( - "com.sun.star.registry.SimpleRegistry key" - " getStringListValue: underlying" - " RegistryKey::getUnicodeListValue() too large"), + OUString("com.sun.star.registry.SimpleRegistry key" + " getStringListValue: underlying" + " RegistryKey::getUnicodeListValue() too large"), static_cast< OWeakObject * >(this)); } css::uno::Sequence< OUString > value(static_cast< sal_Int32 >(n)); @@ -782,10 +746,9 @@ void Key::setStringListValue( static_cast< sal_uInt32 >(list.size())); if (err != REG_NO_ERROR) { throw css::registry::InvalidRegistryException( - (OUString( - "com.sun.star.registry.SimpleRegistry key" - " setStringListValue: underlying" - " RegistryKey::setUnicodeListValue() = ") + + (OUString("com.sun.star.registry.SimpleRegistry key" + " setStringListValue: underlying" + " RegistryKey::setUnicodeListValue() = ") + OUString::number(err)), static_cast< OWeakObject * >(this)); } @@ -802,34 +765,30 @@ css::uno::Sequence< sal_Int8 > Key::getBinaryValue() RegError err = key_.getValueInfo(OUString(), &type, &size); if (err != REG_NO_ERROR) { throw css::registry::InvalidRegistryException( - (OUString( - "com.sun.star.registry.SimpleRegistry key getBinaryValue:" - " underlying RegistryKey::getValueInfo() = ") + + (OUString("com.sun.star.registry.SimpleRegistry key getBinaryValue:" + " underlying RegistryKey::getValueInfo() = ") + OUString::number(err)), static_cast< OWeakObject * >(this)); } if (type != RG_VALUETYPE_BINARY) { throw css::registry::InvalidValueException( - (OUString( - "com.sun.star.registry.SimpleRegistry key getBinaryValue:" - " underlying RegistryKey type = ") + + (OUString("com.sun.star.registry.SimpleRegistry key getBinaryValue:" + " underlying RegistryKey type = ") + OUString::number(type)), static_cast< OWeakObject * >(this)); } if (size > SAL_MAX_INT32) { throw css::registry::InvalidValueException( - OUString( - "com.sun.star.registry.SimpleRegistry key getBinaryValue:" - " underlying RegistryKey size too large"), + OUString("com.sun.star.registry.SimpleRegistry key getBinaryValue:" + " underlying RegistryKey size too large"), static_cast< OWeakObject * >(this)); } css::uno::Sequence< sal_Int8 > value(static_cast< sal_Int32 >(size)); err = key_.getValue(OUString(), value.getArray()); if (err != REG_NO_ERROR) { throw css::registry::InvalidRegistryException( - (OUString( - "com.sun.star.registry.SimpleRegistry key getBinaryValue:" - " underlying RegistryKey::getValue() = ") + + (OUString("com.sun.star.registry.SimpleRegistry key getBinaryValue:" + " underlying RegistryKey::getValue() = ") + OUString::number(err)), static_cast< OWeakObject * >(this)); } @@ -846,9 +805,8 @@ void Key::setBinaryValue(css::uno::Sequence< sal_Int8 > const & value) static_cast< sal_uInt32 >(value.getLength())); if (err != REG_NO_ERROR) { throw css::registry::InvalidRegistryException( - (OUString( - "com.sun.star.registry.SimpleRegistry key setBinaryValue:" - " underlying RegistryKey::setValue() = ") + + (OUString("com.sun.star.registry.SimpleRegistry key setBinaryValue:" + " underlying RegistryKey::setValue() = ") + OUString::number(err)), static_cast< OWeakObject * >(this)); } @@ -868,9 +826,8 @@ css::uno::Reference< css::registry::XRegistryKey > Key::openKey( return css::uno::Reference< css::registry::XRegistryKey >(); default: throw css::registry::InvalidRegistryException( - (OUString( - "com.sun.star.registry.SimpleRegistry key openKey:" - " underlying RegistryKey::openKey() = ") + + (OUString("com.sun.star.registry.SimpleRegistry key openKey:" + " underlying RegistryKey::openKey() = ") + OUString::number(err)), static_cast< OWeakObject * >(this)); } @@ -890,9 +847,8 @@ css::uno::Reference< css::registry::XRegistryKey > Key::createKey( return css::uno::Reference< css::registry::XRegistryKey >(); default: throw css::registry::InvalidRegistryException( - (OUString( - "com.sun.star.registry.SimpleRegistry key createKey:" - " underlying RegistryKey::createKey() = ") + + (OUString("com.sun.star.registry.SimpleRegistry key createKey:" + " underlying RegistryKey::createKey() = ") + OUString::number(err)), static_cast< OWeakObject * >(this)); } @@ -905,9 +861,8 @@ void Key::closeKey() RegError err = key_.closeKey(); if (err != REG_NO_ERROR) { throw css::registry::InvalidRegistryException( - (OUString( - "com.sun.star.registry.SimpleRegistry key closeKey:" - " underlying RegistryKey::closeKey() = ") + + (OUString("com.sun.star.registry.SimpleRegistry key closeKey:" + " underlying RegistryKey::closeKey() = ") + OUString::number(err)), static_cast< OWeakObject * >(this)); } @@ -920,9 +875,8 @@ void Key::deleteKey(OUString const & rKeyName) RegError err = key_.deleteKey(rKeyName); if (err != REG_NO_ERROR) { throw css::registry::InvalidRegistryException( - (OUString( - "com.sun.star.registry.SimpleRegistry key deleteKey:" - " underlying RegistryKey::deleteKey() = ") + + (OUString("com.sun.star.registry.SimpleRegistry key deleteKey:" + " underlying RegistryKey::deleteKey() = ") + OUString::number(err)), static_cast< OWeakObject * >(this)); } @@ -937,18 +891,16 @@ Key::openKeys() RegError err = key_.openSubKeys(OUString(), list); if (err != REG_NO_ERROR) { throw css::registry::InvalidRegistryException( - (OUString( - "com.sun.star.registry.SimpleRegistry key openKeys:" - " underlying RegistryKey::openSubKeys() = ") + + (OUString("com.sun.star.registry.SimpleRegistry key openKeys:" + " underlying RegistryKey::openSubKeys() = ") + OUString::number(err)), static_cast< OWeakObject * >(this)); } sal_uInt32 n = list.getLength(); if (n > SAL_MAX_INT32) { throw css::registry::InvalidRegistryException( - OUString( - "com.sun.star.registry.SimpleRegistry key getKeyNames:" - " underlying RegistryKey::getKeyNames() too large"), + OUString("com.sun.star.registry.SimpleRegistry key getKeyNames:" + " underlying RegistryKey::getKeyNames() too large"), static_cast< OWeakObject * >(this)); } css::uno::Sequence< css::uno::Reference< css::registry::XRegistryKey > > @@ -968,18 +920,16 @@ css::uno::Sequence< OUString > Key::getKeyNames() RegError err = key_.getKeyNames(OUString(), list); if (err != REG_NO_ERROR) { throw css::registry::InvalidRegistryException( - (OUString( - "com.sun.star.registry.SimpleRegistry key getKeyNames:" - " underlying RegistryKey::getKeyNames() = ") + + (OUString("com.sun.star.registry.SimpleRegistry key getKeyNames:" + " underlying RegistryKey::getKeyNames() = ") + OUString::number(err)), static_cast< OWeakObject * >(this)); } sal_uInt32 n = list.getLength(); if (n > SAL_MAX_INT32) { throw css::registry::InvalidRegistryException( - OUString( - "com.sun.star.registry.SimpleRegistry key getKeyNames:" - " underlying RegistryKey::getKeyNames() too large"), + OUString("com.sun.star.registry.SimpleRegistry key getKeyNames:" + " underlying RegistryKey::getKeyNames() too large"), static_cast< OWeakObject * >(this)); } css::uno::Sequence< OUString > names(static_cast< sal_Int32 >(n)); @@ -1001,9 +951,8 @@ sal_Bool Key::createLink( case REG_INVALID_KEY: case REG_DETECT_RECURSION: throw css::registry::InvalidRegistryException( - (OUString( - "com.sun.star.registry.SimpleRegistry key createLink:" - " underlying RegistryKey::createLink() = ") + + (OUString("com.sun.star.registry.SimpleRegistry key createLink:" + " underlying RegistryKey::createLink() = ") + OUString::number(err)), static_cast< OWeakObject * >(this)); default: @@ -1018,9 +967,8 @@ void Key::deleteLink(OUString const & rLinkName) RegError err = key_.deleteLink(rLinkName); if (err != REG_NO_ERROR) { throw css::registry::InvalidRegistryException( - (OUString( - "com.sun.star.registry.SimpleRegistry key deleteLink:" - " underlying RegistryKey::deleteLink() = ") + + (OUString("com.sun.star.registry.SimpleRegistry key deleteLink:" + " underlying RegistryKey::deleteLink() = ") + OUString::number(err)), static_cast< OWeakObject * >(this)); } @@ -1034,9 +982,8 @@ OUString Key::getLinkTarget(OUString const & rLinkName) RegError err = key_.getLinkTarget(rLinkName, target); if (err != REG_NO_ERROR) { throw css::registry::InvalidRegistryException( - (OUString( - "com.sun.star.registry.SimpleRegistry key getLinkTarget:" - " underlying RegistryKey::getLinkTarget() = ") + + (OUString("com.sun.star.registry.SimpleRegistry key getLinkTarget:" + " underlying RegistryKey::getLinkTarget() = ") + OUString::number(err)), static_cast< OWeakObject * >(this)); } @@ -1051,9 +998,8 @@ OUString Key::getResolvedName(OUString const & aKeyName) RegError err = key_.getResolvedKeyName(aKeyName, true, resolved); if (err != REG_NO_ERROR) { throw css::registry::InvalidRegistryException( - (OUString( - "com.sun.star.registry.SimpleRegistry key getResolvedName:" - " underlying RegistryKey::getResolvedName() = ") + + (OUString("com.sun.star.registry.SimpleRegistry key getResolvedName:" + " underlying RegistryKey::getResolvedName() = ") + OUString::number(err)), static_cast< OWeakObject * >(this)); } @@ -1078,11 +1024,9 @@ void SimpleRegistry::open( } if (err != REG_NO_ERROR) { throw css::registry::InvalidRegistryException( - (OUString( - "com.sun.star.registry.SimpleRegistry.open(") + + (OUString("com.sun.star.registry.SimpleRegistry.open(") + rURL + - OUString( - "): underlying Registry::open/create() = ") + + OUString("): underlying Registry::open/create() = ") + OUString::number(err)), static_cast< OWeakObject * >(this)); } @@ -1100,9 +1044,8 @@ void SimpleRegistry::close() RegError err = registry_.close(); if (err != REG_NO_ERROR) { throw css::registry::InvalidRegistryException( - (OUString( - "com.sun.star.registry.SimpleRegistry.close:" - " underlying Registry::close() = ") + + (OUString("com.sun.star.registry.SimpleRegistry.close:" + " underlying Registry::close() = ") + OUString::number(err)), static_cast< OWeakObject * >(this)); } @@ -1115,9 +1058,8 @@ void SimpleRegistry::destroy() RegError err = registry_.destroy(OUString()); if (err != REG_NO_ERROR) { throw css::registry::InvalidRegistryException( - (OUString( - "com.sun.star.registry.SimpleRegistry.destroy:" - " underlying Registry::destroy() = ") + + (OUString("com.sun.star.registry.SimpleRegistry.destroy:" + " underlying Registry::destroy() = ") + OUString::number(err)), static_cast< OWeakObject * >(this)); } @@ -1131,9 +1073,8 @@ css::uno::Reference< css::registry::XRegistryKey > SimpleRegistry::getRootKey() RegError err = registry_.openRootKey(root); if (err != REG_NO_ERROR) { throw css::registry::InvalidRegistryException( - (OUString( - "com.sun.star.registry.SimpleRegistry.getRootKey:" - " underlying Registry::getRootKey() = ") + + (OUString("com.sun.star.registry.SimpleRegistry.getRootKey:" + " underlying Registry::getRootKey() = ") + OUString::number(err)), static_cast< OWeakObject * >(this)); } @@ -1165,15 +1106,13 @@ void SimpleRegistry::mergeKey( break; case REG_MERGE_ERROR: throw css::registry::MergeConflictException( - OUString( - "com.sun.star.registry.SimpleRegistry.mergeKey:" - " underlying Registry::mergeKey() = REG_MERGE_ERROR"), + OUString("com.sun.star.registry.SimpleRegistry.mergeKey:" + " underlying Registry::mergeKey() = REG_MERGE_ERROR"), static_cast< cppu::OWeakObject * >(this)); default: throw css::registry::InvalidRegistryException( - (OUString( - "com.sun.star.registry.SimpleRegistry.mergeKey:" - " underlying Registry::getRootKey/mergeKey() = ") + + (OUString("com.sun.star.registry.SimpleRegistry.mergeKey:" + " underlying Registry::getRootKey/mergeKey() = ") + OUString::number(err)), static_cast< OWeakObject * >(this)); } -- cgit