diff options
author | Daniel Boelzle <dbo@openoffice.org> | 2002-10-21 14:26:05 +0000 |
---|---|---|
committer | Daniel Boelzle <dbo@openoffice.org> | 2002-10-21 14:26:05 +0000 |
commit | 6ff0747fd7a7bc203d074019c183e2dfaf3bb36e (patch) | |
tree | e83b4db43a8d84833ff8b9a432495c3b1a8faf3a | |
parent | 23f6ceee7dc9cb73e9a0a4882a9cb5c3c07fd065 (diff) |
#104367# better exception string
-rw-r--r-- | stoc/source/simpleregistry/simpleregistry.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/stoc/source/simpleregistry/simpleregistry.cxx b/stoc/source/simpleregistry/simpleregistry.cxx index 1b01612f526d..c9337407ab7c 100644 --- a/stoc/source/simpleregistry/simpleregistry.cxx +++ b/stoc/source/simpleregistry/simpleregistry.cxx @@ -2,9 +2,9 @@ * * $RCSfile: simpleregistry.cxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: dbo $ $Date: 2002-05-22 12:36:59 $ + * last change: $Author: dbo $ $Date: 2002-10-21 15:26:05 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1240,11 +1240,11 @@ void SAL_CALL SimpleRegistryImpl::open( const OUString& rURL, sal_Bool bReadOnly reason.append( rURL ); if( bReadOnly ) { - reason.appendAscii( RTL_CONSTASCII_STRINGPARAM("for reading") ); + reason.appendAscii( RTL_CONSTASCII_STRINGPARAM(" for reading") ); } else { - reason.appendAscii( RTL_CONSTASCII_STRINGPARAM("for writing" ) ); + reason.appendAscii( RTL_CONSTASCII_STRINGPARAM(" for writing" ) ); } throw InvalidRegistryException( reason.makeStringAndClear() , Reference< XInterface >() ); } |