summaryrefslogtreecommitdiff
path: root/comphelper/source/property/propagg.cxx
diff options
context:
space:
mode:
authorMartin Hollmichel <mh@openoffice.org>2002-10-29 14:19:26 +0000
committerMartin Hollmichel <mh@openoffice.org>2002-10-29 14:19:26 +0000
commitc9a51997cb45bb7b08501c0d7edb418cca3677d2 (patch)
tree8e4d0fa605368f0a11d325077c2abd7c18369b8c /comphelper/source/property/propagg.cxx
parent461e4ace4a9fa872dc4ee416f21af684178c349f (diff)
chg: const Property* to non const to make it gcc2 compile
Diffstat (limited to 'comphelper/source/property/propagg.cxx')
-rw-r--r--comphelper/source/property/propagg.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/comphelper/source/property/propagg.cxx b/comphelper/source/property/propagg.cxx
index 401773b23ee3..d7ed2bc0efdf 100644
--- a/comphelper/source/property/propagg.cxx
+++ b/comphelper/source/property/propagg.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: propagg.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: fs $ $Date: 2002-10-18 13:54:19 $
+ * last change: $Author: mh $ $Date: 2002-10-29 15:19:26 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -97,7 +97,7 @@ namespace comphelper
aSearch.Name = _rName;
const void* pUntyped = _rProps.getConstArray();
- return static_cast< const Property* >( bsearch( &aSearch, pUntyped, _rProps.getLength(), sizeof( Property ), &PropertyCompare ) );
+ return static_cast< Property* >( bsearch( &aSearch, pUntyped, _rProps.getLength(), sizeof( Property ), &PropertyCompare ) );
}
}
//==================================================================