diff options
author | Jörg Barfurth <jb@openoffice.org> | 2000-12-19 07:39:44 +0000 |
---|---|---|
committer | Jörg Barfurth <jb@openoffice.org> | 2000-12-19 07:39:44 +0000 |
commit | ab54ca93a1ece9e6869f174d00437b53b6688874 (patch) | |
tree | d4832cc349fefb169a4f797d2afb9f585dad2b5f /configmgr | |
parent | 6372d1294d2b11430451e05f31c219b1de7566b0 (diff) |
#82144# Previous fix was incomplete. Now really using the node parameter when creating a PropertySetInfo
Diffstat (limited to 'configmgr')
-rw-r--r-- | configmgr/source/api2/propsetaccessimpl.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configmgr/source/api2/propsetaccessimpl.cxx b/configmgr/source/api2/propsetaccessimpl.cxx index 32b5441834ba..8af9943dfd2f 100644 --- a/configmgr/source/api2/propsetaccessimpl.cxx +++ b/configmgr/source/api2/propsetaccessimpl.cxx @@ -2,9 +2,9 @@ * * $RCSfile: propsetaccessimpl.cxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: hjs $ $Date: 2000-12-15 21:45:33 $ + * last change: $Author: jb $ $Date: 2000-12-19 08:39:44 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -160,7 +160,7 @@ public: Sequence<Property> forChildren(Tree& _rTree,const NodeRef& _rNode) { reset(); - _rTree.dispatchToChildren(_rTree.getRootNode(), *this); + _rTree.dispatchToChildren(_rNode, *this); return makeSequence(m_aProperties); } |