summaryrefslogtreecommitdiff
path: root/stoc/test/testregistry.cxx
diff options
context:
space:
mode:
authorDaniel Boelzle <dbo@openoffice.org>2001-03-09 11:43:55 +0000
committerDaniel Boelzle <dbo@openoffice.org>2001-03-09 11:43:55 +0000
commit7832bd3371d9121ebed89e046d79c13c697748f5 (patch)
tree1ac337c837d40160854499c8d445bd983c6fd0ee /stoc/test/testregistry.cxx
parent270ffc703a589e72a7fe3e9af175d7bded3d4c35 (diff)
*** empty log message ***
Diffstat (limited to 'stoc/test/testregistry.cxx')
-rw-r--r--stoc/test/testregistry.cxx12
1 files changed, 7 insertions, 5 deletions
diff --git a/stoc/test/testregistry.cxx b/stoc/test/testregistry.cxx
index ec95813d1849..d6f4d634a2e9 100644
--- a/stoc/test/testregistry.cxx
+++ b/stoc/test/testregistry.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: testregistry.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: jsc $ $Date: 2001-03-07 09:49:28 $
+ * last change: $Author: dbo $ $Date: 2001-03-09 12:43:55 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -627,12 +627,14 @@ void test_DefaultRegistry()
xRootKey->deleteKey(OUString( RTL_CONSTASCII_USTRINGPARAM("/AllFromTestreg2") ));
}
- Reference< XSimpleRegistry > xSimplReg( rSMgr->createInstance(L"com.sun.star.registry.SimpleRegistry"), UNO_QUERY );
+ Reference< XSimpleRegistry > xSimplReg(
+ rSMgr->createInstance(
+ OUString( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.registry.SimpleRegistry") ) ), UNO_QUERY );
- xSimplReg->open(L"testreg2.rdb", False, True);
+ xSimplReg->open( OUString( RTL_CONSTASCII_USTRINGPARAM("testreg2.rdb") ), sal_False, sal_True);
xSimplReg->destroy();
- xSimplReg->open(L"testreg.rdb", False, True);
+ xSimplReg->open( OUString( RTL_CONSTASCII_USTRINGPARAM("testreg.rdb") ), sal_False, sal_True);
xSimplReg->destroy();
}
catch(InvalidRegistryException&)