summaryrefslogtreecommitdiff
path: root/jvmfwk
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 23:10:31 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 23:10:31 +0000
commit0e579bf3060528f1b9be3450d3dd60d5cdb4ca2e (patch)
tree65fa9d3d9ee32ae3efe7893ffc1d6c0d2b0beae3 /jvmfwk
parentf648a9a5190396f7d0e8929027e8e9bb2521c9a5 (diff)
INTEGRATION: CWS warnings01 (1.4.30); FILE MERGED
2005/11/07 18:54:54 pl 1.4.30.3: RESYNC: (1.5-1.6); FILE MERGED 2005/09/22 20:22:30 sb 1.4.30.2: RESYNC: (1.4-1.5); FILE MERGED 2005/09/01 14:56:19 sb 1.4.30.1: #i53898# Made code warning-free.
Diffstat (limited to 'jvmfwk')
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/vendorlist.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/jvmfwk/plugins/sunmajor/pluginlib/vendorlist.cxx b/jvmfwk/plugins/sunmajor/pluginlib/vendorlist.cxx
index 13728a94fb8e..83b5adc63d55 100644
--- a/jvmfwk/plugins/sunmajor/pluginlib/vendorlist.cxx
+++ b/jvmfwk/plugins/sunmajor/pluginlib/vendorlist.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: vendorlist.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: hr $ $Date: 2005-10-25 11:35:52 $
+ * last change: $Author: hr $ $Date: 2006-06-20 00:10:31 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -64,7 +64,7 @@ Sequence<OUString> getVendorNames()
{
const size_t count = sizeof(gVendorMap) / sizeof (VendorSupportMapEntry) - 1;
OUString arNames[count];
- for ( sal_Int32 pos = 0; pos < count; ++pos )
+ for ( size_t pos = 0; pos < count; ++pos )
{
OString sVendor(gVendorMap[pos].sVendorName);
arNames[pos] = OStringToOUString(sVendor, RTL_TEXTENCODING_UTF8);