summaryrefslogtreecommitdiff
path: root/fpicker/source
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 23:11:49 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 23:11:49 +0000
commitee95002e934b0549c68a684b3b6b2acd0f2d435c (patch)
tree464dbc1b943b3b629990ddea91fcf5b284dc96d1 /fpicker/source
parent85312c943662729422c223f93669e41c05b1fb87 (diff)
INTEGRATION: CWS warnings01 (1.3.18); FILE MERGED
2005/11/16 12:07:39 pl 1.3.18.1: #i55991# removed warnings
Diffstat (limited to 'fpicker/source')
-rw-r--r--fpicker/source/office/OfficeControlAccess.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/fpicker/source/office/OfficeControlAccess.cxx b/fpicker/source/office/OfficeControlAccess.cxx
index c88339297a..8185912e1f 100644
--- a/fpicker/source/office/OfficeControlAccess.cxx
+++ b/fpicker/source/office/OfficeControlAccess.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: OfficeControlAccess.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 23:28:12 $
+ * last change: $Author: hr $ $Date: 2006-06-20 00:11:49 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -338,15 +338,15 @@ namespace svt
// will throw an IllegalArgumentException if the name is not valid
// fill in the property names
- Sequence< ::rtl::OUString > aProperties( s_nPropertyCount );
- ::rtl::OUString* pProperty = aProperties.getArray();
+ Sequence< ::rtl::OUString > aProps( s_nPropertyCount );
+ ::rtl::OUString* pProperty = aProps.getArray();
for ( ControlPropertyIterator aProp = s_pProperties; aProp != s_pPropertiesEnd; ++aProp )
if ( 0 != ( nPropertyMask & aProp->nPropertyId ) )
*pProperty++ = ::rtl::OUString::createFromAscii( aProp->pPropertyName );
- aProperties.realloc( pProperty - aProperties.getArray() );
- return aProperties;
+ aProps.realloc( pProperty - aProps.getArray() );
+ return aProps;
}
// --------------------------------------------------------------------------