summaryrefslogtreecommitdiff
path: root/unodevtools
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2006-07-13 10:57:21 +0000
committerOliver Bolte <obo@openoffice.org>2006-07-13 10:57:21 +0000
commit43d191b8f106b0cf240a708004ea1613c38219d7 (patch)
treea2a41ca0a3ac0f79d16d53d09e4e0d189f9b8f3d /unodevtools
parent578bdf4fa4c600c5edc0d398a0692209f922d5ab (diff)
INTEGRATION: CWS jsc8 (1.5.4); FILE MERGED
2006/06/14 13:15:19 jsc 1.5.4.1: #i66419# remove warnings, delcare hashtable variable Java 5 conform
Diffstat (limited to 'unodevtools')
-rw-r--r--unodevtools/source/skeletonmaker/skeletoncommon.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/unodevtools/source/skeletonmaker/skeletoncommon.cxx b/unodevtools/source/skeletonmaker/skeletoncommon.cxx
index 405da8e1d576..68021e7128d5 100644
--- a/unodevtools/source/skeletonmaker/skeletoncommon.cxx
+++ b/unodevtools/source/skeletonmaker/skeletoncommon.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: skeletoncommon.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: vg $ $Date: 2006-03-15 09:19:50 $
+ * last change: $Author: obo $ $Date: 2006-07-13 11:57:21 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -68,9 +68,9 @@ void printLicenseHeader(std::ostream& o, rtl::OString const & filename)
<< shortfilename
<< ",v $\n"
" *\n"
- " * $Revision: 1.5 $\n"
+ " * $Revision: 1.6 $\n"
" *\n"
- " * last change: $Author: vg $ $Date: 2006-03-15 09:19:50 $\n"
+ " * last change: $Author: obo $ $Date: 2006-07-13 11:57:21 $\n"
" *\n"
" * The Contents of this file are made available subject to\n"
" * the terms of GNU Lesser General Public License Version 2.1.\n"
@@ -662,8 +662,8 @@ void generateFunctionParamterMap(std::ostream& o,
}
else {
if ( options.java5 )
- o << " java.util.Hashtable fpm = new java.util.Hashtable"
- "< Integer, String >();\n";
+ o << " java.util.Hashtable< Integer, String > fpm = "
+ "new java.util.Hashtable< Integer, String >();\n";
else
o << " java.util.Hashtable fpm = "
"new java.util.Hashtable();\n";