diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 23:50:45 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 23:50:45 +0000 |
commit | 00e65eee0fb5d291c3a1bb1087bc10ae7e094462 (patch) | |
tree | 09bed7b1d01eda3526eeff752b75eee5f686934b /unodevtools | |
parent | d35d702595fbfaab5c3ce836855eb75a6d580eca (diff) |
INTEGRATION: CWS warnings01 (1.3.2); FILE MERGED
2006/04/07 20:04:36 sb 1.3.2.2: RESYNC: (1.3-1.4); FILE MERGED
2005/11/09 11:51:20 pl 1.3.2.1: #i53898# removed warnings
Diffstat (limited to 'unodevtools')
-rw-r--r-- | unodevtools/source/skeletonmaker/javatypemaker.cxx | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/unodevtools/source/skeletonmaker/javatypemaker.cxx b/unodevtools/source/skeletonmaker/javatypemaker.cxx index 9779ec4bf48f..6023c040662e 100644 --- a/unodevtools/source/skeletonmaker/javatypemaker.cxx +++ b/unodevtools/source/skeletonmaker/javatypemaker.cxx @@ -4,9 +4,9 @@ * * $RCSfile: javatypemaker.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: vg $ $Date: 2006-03-15 09:19:01 $ + * last change: $Author: hr $ $Date: 2006-06-20 00:50:45 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -72,6 +72,12 @@ void printType(std::ostream & o, case codemaker::UnoType::SORT_DOUBLE: o << "0"; return; + case codemaker::UnoType::SORT_VOID: + case codemaker::UnoType::SORT_STRING: + case codemaker::UnoType::SORT_TYPE: + case codemaker::UnoType::SORT_ANY: + case codemaker::UnoType::SORT_COMPLEX: + break; } } @@ -203,7 +209,7 @@ void printConstructor(std::ostream & o, void printMethodParameters(std::ostream & o, ProgramOptions const & options, TypeManager const & manager, typereg::Reader const & reader, sal_uInt16 method, bool previous, - bool withtype, bool shortname) + bool withtype, bool /*shortname*/) { for ( sal_uInt16 i = 0; i < reader.getMethodParameterCount(method); ++i ) { if ( previous ) @@ -432,9 +438,11 @@ void printMethods(std::ostream & o, << codemaker::convertString(reader.getFieldName(i)).getStr() << "()"; + #if 0 // DEBUG sal_uInt16 mc = reader.getMethodCount(); RTMethodMode mm = reader.getMethodFlags(method); + #endif OUString mn = reader.getMethodName(method); OUString fn = reader.getFieldName(i); |