diff options
Diffstat (limited to 'sal/inc/rtl')
-rw-r--r-- | sal/inc/rtl/strbuf.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sal/inc/rtl/strbuf.hxx b/sal/inc/rtl/strbuf.hxx index 2bff0f9edb1e..0375be40e02b 100644 --- a/sal/inc/rtl/strbuf.hxx +++ b/sal/inc/rtl/strbuf.hxx @@ -4,9 +4,9 @@ * * $RCSfile: strbuf.hxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: rt $ $Date: 2005-09-08 14:41:26 $ + * last change: $Author: hr $ $Date: 2006-06-20 04:14:15 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -189,7 +189,7 @@ public: @return the number of characters in this string buffer. */ - sal_Int32 getLength() + sal_Int32 getLength() const { return pData->length; } @@ -204,7 +204,7 @@ public: @return the current capacity of this string buffer. */ - sal_Int32 getCapacity() + sal_Int32 getCapacity() const { return nCapacity; } |