summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorKai Sommerfeld <kso@openoffice.org>2001-08-21 06:07:18 +0000
committerKai Sommerfeld <kso@openoffice.org>2001-08-21 06:07:18 +0000
commit40052c59e39614a1dca9742b120984c211cc83b1 (patch)
tree0c52c396d0bcdf18fb85f6e125d533f6415748cf /ucb
parent94c4bd958e1e53f5f9439b223e43287b88d181aa (diff)
#91207# - Fixed HierarchyDataSource::createInstance(...)
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/hierarchy/hierarchydatasource.cxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/ucb/source/ucp/hierarchy/hierarchydatasource.cxx b/ucb/source/ucp/hierarchy/hierarchydatasource.cxx
index 06952e7615ae..55c87c04f4bb 100644
--- a/ucb/source/ucp/hierarchy/hierarchydatasource.cxx
+++ b/ucb/source/ucp/hierarchy/hierarchydatasource.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: hierarchydatasource.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: kso $ $Date: 2001-07-04 09:08:28 $
+ * last change: $Author: kso $ $Date: 2001-08-21 07:07:18 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -409,9 +409,10 @@ HierarchyDataSource::createInstance( const rtl::OUString & aServiceSpecifier )
// Create view to root node.
beans::PropertyValue aProp;
- aProp.Name = rtl::OUString(
+ aProp.Name = rtl::OUString(
RTL_CONSTASCII_USTRINGPARAM( CFGPROPERTY_NODEPATH ) );
- aProp.Value <<= rtl::OUString(); // root node path == empty string
+ aProp.Value <<=
+ rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( CONFIG_DATA_ROOT_KEY ) );
uno::Sequence< uno::Any > aArguments( 1 );
aArguments[ 0 ] <<= aProp;