diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2002-02-18 16:29:32 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2002-02-18 16:29:32 +0000 |
commit | b57ecc6707ff037db47d2b4d057ff98f60d7f297 (patch) | |
tree | b53241e34823629256c12a6a1ee6157239a21fd1 /configmgr/source | |
parent | 4cd99891a2a4fd1ed1c43d276c9bb651f8deaa63 (diff) |
#65293#: constness
Diffstat (limited to 'configmgr/source')
-rw-r--r-- | configmgr/source/api2/broadcaster.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configmgr/source/api2/broadcaster.cxx b/configmgr/source/api2/broadcaster.cxx index e08f8aaf242c..f548e198a12c 100644 --- a/configmgr/source/api2/broadcaster.cxx +++ b/configmgr/source/api2/broadcaster.cxx @@ -2,9 +2,9 @@ * * $RCSfile: broadcaster.cxx,v $ * - * $Revision: 1.12 $ + * $Revision: 1.13 $ * - * last change: $Author: jb $ $Date: 2002-02-11 13:47:53 $ + * last change: $Author: hr $ $Date: 2002-02-18 17:29:32 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -136,7 +136,7 @@ namespace configmgr struct LessORefBodyPtr { typedef vos::ORef<T> Ref; - bool operator()(Ref const& lhs, Ref const& rhs) + bool operator()(Ref const& lhs, Ref const& rhs) const { return ptr_less(lhs.getBodyPtr(), rhs.getBodyPtr()); } |