diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 22:33:49 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 22:33:49 +0000 |
commit | 3525e56ce6a8fc8ddd1597ef5794b27c551e9b7c (patch) | |
tree | e83875fe85faf36d8fe74c53fd49b2d816b7b611 /configmgr/source | |
parent | 1bb1b4d3e4fd5cf2e23ab8a8e96ea6c0ffebb2d1 (diff) |
INTEGRATION: CWS warnings01 (1.28.4); FILE MERGED
2005/11/01 12:47:40 cd 1.28.4.1: #i53898# Warning free code for sun solaris compiler
Diffstat (limited to 'configmgr/source')
-rw-r--r-- | configmgr/source/treemgr/noderef.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/configmgr/source/treemgr/noderef.cxx b/configmgr/source/treemgr/noderef.cxx index 26b4586a8c5c..4034c4e3f2c8 100644 --- a/configmgr/source/treemgr/noderef.cxx +++ b/configmgr/source/treemgr/noderef.cxx @@ -4,9 +4,9 @@ * * $RCSfile: noderef.cxx,v $ * - * $Revision: 1.28 $ + * $Revision: 1.29 $ * - * last change: $Author: rt $ $Date: 2005-09-08 04:32:32 $ + * last change: $Author: hr $ $Date: 2006-06-19 23:33:49 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -1595,6 +1595,7 @@ bool operator < (SubNodeID const& lhs, SubNodeID const& rhs) Name validateElementName(OUString const& sName, Tree const& aTree, NodeRef const& aNode ) { + { (void)aTree; (void)aNode; } OSL_PRECOND( !aTree.isEmpty(), "ERROR: Configuration: Tree operation requires a valid Tree"); OSL_PRECOND( aNode.isValid(), "ERROR: Configuration: Node operation requires a valid NodeRef"); OSL_PRECOND( aTree.isValidNode(aNode), "ERROR: Configuration: NodeRef does not match Tree"); @@ -1607,6 +1608,7 @@ Name validateElementName(OUString const& sName, Tree const& aTree, NodeRef const Name validateChildName(OUString const& sName, Tree const& aTree, NodeRef const& aNode ) { + { (void)aTree; (void)aNode; } OSL_PRECOND( !aTree.isEmpty(), "ERROR: Configuration: Tree operation requires a valid Tree"); OSL_PRECOND( aNode.isValid(), "ERROR: Configuration: Node operation requires a valid NodeRef"); OSL_PRECOND( aTree.isValidNode(aNode), "ERROR: Configuration: NodeRef does not match Tree"); |