INTEGRATION: CWS jl31 (1.30.8); FILE MERGED

2006/02/20 15:52:06 sb 1.30.8.1: #i62339# Missing comma when generating names of UNO instantiated polymorphic struct type templates.
This commit is contained in:
Rüdiger Timm
2006-03-09 09:26:53 +00:00
parent 496e736cbb
commit ccbd8fd7f3

View File

@@ -4,9 +4,9 @@
* *
* $RCSfile: javatype.cxx,v $ * $RCSfile: javatype.cxx,v $
* *
* $Revision: 1.30 $ * $Revision: 1.31 $
* *
* last change: $Author: hr $ $Date: 2006-01-26 17:42:55 $ * last change: $Author: rt $ $Date: 2006-03-09 10:26:53 $
* *
* The Contents of this file are made available subject to * The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1. * the terms of GNU Lesser General Public License Version 2.1.
@@ -94,6 +94,9 @@ void appendUnoName(
for (std::vector< rtl::OString >::const_iterator i(arguments.begin()); for (std::vector< rtl::OString >::const_iterator i(arguments.begin());
i != arguments.end(); ++i) i != arguments.end(); ++i)
{ {
if (i != arguments.begin()) {
buffer->append(',');
}
RTTypeClass argTypeClass; RTTypeClass argTypeClass;
rtl::OString argNucleus; rtl::OString argNucleus;
sal_Int32 argRank; sal_Int32 argRank;