From ccbd8fd7f36ca86ffcf76b0d73f69e0fc8f2134c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=BCdiger=20Timm?= Date: Thu, 9 Mar 2006 09:26:53 +0000 Subject: [PATCH] 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. --- codemaker/source/javamaker/javatype.cxx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/codemaker/source/javamaker/javatype.cxx b/codemaker/source/javamaker/javatype.cxx index dc8780e9d4e4..6f58115dc5d1 100644 --- a/codemaker/source/javamaker/javatype.cxx +++ b/codemaker/source/javamaker/javatype.cxx @@ -4,9 +4,9 @@ * * $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 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()); i != arguments.end(); ++i) { + if (i != arguments.begin()) { + buffer->append(','); + } RTTypeClass argTypeClass; rtl::OString argNucleus; sal_Int32 argRank;