summaryrefslogtreecommitdiff
path: root/framework/inc/services/substitutepathvars.hxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2002-09-04 15:58:39 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2002-09-04 15:58:39 +0000
commit237c92de5974d6683b3cb26c6319ac4486831b22 (patch)
tree6692fe3e67695c69c0005a856753bdf4be32e032 /framework/inc/services/substitutepathvars.hxx
parentea20bdc8f79540cf26afe7bd1bd6ed515a3e3891 (diff)
#100000#: constness
Diffstat (limited to 'framework/inc/services/substitutepathvars.hxx')
-rw-r--r--framework/inc/services/substitutepathvars.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/framework/inc/services/substitutepathvars.hxx b/framework/inc/services/substitutepathvars.hxx
index 68622496c171..1d9b797a861e 100644
--- a/framework/inc/services/substitutepathvars.hxx
+++ b/framework/inc/services/substitutepathvars.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: substitutepathvars.hxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: cd $ $Date: 2002-08-20 10:10:30 $
+ * last change: $Author: hr $ $Date: 2002-09-04 16:58:39 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -285,7 +285,7 @@ struct ReSubstFixedVarOrder
sal_Int32 nVarValueLength;
PreDefVariable eVariable;
- bool ReSubstFixedVarOrder::operator< ( const ReSubstFixedVarOrder& aFixedVarOrder )
+ bool operator< ( const ReSubstFixedVarOrder& aFixedVarOrder ) const
{
// Reverse operator< to have high to low ordering
return ( nVarValueLength > aFixedVarOrder.nVarValueLength );
@@ -297,7 +297,7 @@ struct ReSubstUserVarOrder
sal_Int32 nVarValueLength;
rtl::OUString aVarName;
- bool ReSubstUserVarOrder::operator< ( const ReSubstUserVarOrder& aUserVarOrder )
+ bool operator< ( const ReSubstUserVarOrder& aUserVarOrder ) const
{
// Reverse operator< to have high to low ordering
return ( nVarValueLength > aUserVarOrder.nVarValueLength );