summaryrefslogtreecommitdiffstats
path: root/cppuhelper/source/propshlp.cxx
diff options
context:
space:
mode:
authorPhilipp Lohmann <pl@openoffice.org>2001-05-10 19:29:53 +0000
committerPhilipp Lohmann <pl@openoffice.org>2001-05-10 19:29:53 +0000
commit07491a292e4d3731a63cd75923d912263287926f (patch)
tree9651c9a5701b9d4932fc129e5af0fa5b759821d6 /cppuhelper/source/propshlp.cxx
parentrtl string api changes (diff)
downloadcore-07491a292e4d3731a63cd75923d912263287926f.tar.gz
core-07491a292e4d3731a63cd75923d912263287926f.zip
rtl string api changes
Diffstat (limited to 'cppuhelper/source/propshlp.cxx')
-rw-r--r--cppuhelper/source/propshlp.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/cppuhelper/source/propshlp.cxx b/cppuhelper/source/propshlp.cxx
index 57df796e0a38..b786dba4cafb 100644
--- a/cppuhelper/source/propshlp.cxx
+++ b/cppuhelper/source/propshlp.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: propshlp.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: jl $ $Date: 2001-03-12 13:39:32 $
+ * last change: $Author: pl $ $Date: 2001-05-10 20:24:59 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -262,7 +262,7 @@ void OPropertySetHelper::addPropertyChangeListener(
{
// only add listeners if you are not disposed
// a listener with no name means all properties
- if( rPropertyName.len() )
+ if( rPropertyName.getLength() )
{
// get the map table
IPropertyArrayHelper & rPH = getInfoHelper();
@@ -308,7 +308,7 @@ void OPropertySetHelper::removePropertyChangeListener(
// all listeners are automaticly released in a dispose call
if( !rBHelper.bInDispose && !rBHelper.bDisposed )
{
- if( rPropertyName.len() )
+ if( rPropertyName.getLength() )
{
// get the map table
IPropertyArrayHelper & rPH = getInfoHelper();
@@ -344,7 +344,7 @@ void OPropertySetHelper::addVetoableChangeListener(
{
// only add listeners if you are not disposed
// a listener with no name means all properties
- if( rPropertyName.len() )
+ if( rPropertyName.getLength() )
{
// get the map table
IPropertyArrayHelper & rPH = getInfoHelper();
@@ -388,7 +388,7 @@ void OPropertySetHelper::removeVetoableChangeListener(
// all listeners are automaticly released in a dispose call
if( !rBHelper.bInDispose && !rBHelper.bDisposed )
{
- if( rPropertyName.len() )
+ if( rPropertyName.getLength() )
{
// get the map table
IPropertyArrayHelper & rPH = getInfoHelper();