diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2001-10-02 11:46:48 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2001-10-02 11:46:48 +0000 |
commit | 8ccf0bfc3e2769c7b5426debc3a553a69f698461 (patch) | |
tree | c42fb062809354dd6d3980d91949f3dabd2748bc /configmgr | |
parent | 4acef72c90dcc2b0ff8f4f12ca07d96abec15f3d (diff) |
#65295# corrected return value
Diffstat (limited to 'configmgr')
-rw-r--r-- | configmgr/source/inc/valuenode.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configmgr/source/inc/valuenode.hxx b/configmgr/source/inc/valuenode.hxx index 6c402a798481..0413026f81bc 100644 --- a/configmgr/source/inc/valuenode.hxx +++ b/configmgr/source/inc/valuenode.hxx @@ -2,9 +2,9 @@ * * $RCSfile: valuenode.hxx,v $ * - * $Revision: 1.15 $ + * $Revision: 1.16 $ * - * last change: $Author: jb $ $Date: 2001-09-28 12:44:15 $ + * last change: $Author: vg $ $Date: 2001-10-02 12:46:48 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -128,7 +128,7 @@ namespace configmgr protected: INode(){} - bool markAsDefault(bool _bDefault = true) { m_aAttributes.bDefaulted = _bDefault;} + void markAsDefault(bool _bDefault = true) { m_aAttributes.bDefaulted = _bDefault;} public: explicit INode(node::Attributes); |