From 975e230f08a664c5afc596d07ea9165e667c28f0 Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Mon, 26 Aug 2013 15:56:20 +0200 Subject: unodevtools: why does the C++ generating code check java5 flag? Change-Id: I598698948a3543f1c020cc4a4b8db8799eb314a5 --- unodevtools/source/skeletonmaker/cpptypemaker.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unodevtools/source/skeletonmaker/cpptypemaker.cxx b/unodevtools/source/skeletonmaker/cpptypemaker.cxx index 51a17c48b4bf..44a044e708ce 100644 --- a/unodevtools/source/skeletonmaker/cpptypemaker.cxx +++ b/unodevtools/source/skeletonmaker/cpptypemaker.cxx @@ -935,7 +935,7 @@ void generateDocumentation(std::ostream & o, case codemaker::UnoType::SORT_POLYMORPHIC_STRUCT_TYPE_TEMPLATE: printMapsToCppType( o, options, manager, sort, nucleus, rank, arguments, entity, - options.java5 ? "generic class" : "class"); + "class template"); o << "; full constructor:\n"; printConstructor( o, options, manager, @@ -946,7 +946,7 @@ void generateDocumentation(std::ostream & o, case codemaker::UnoType::SORT_INSTANTIATED_POLYMORPHIC_STRUCT_TYPE: printMapsToCppType( o, options, manager, sort, nucleus, rank, arguments, entity, - options.java5 ? "generic class instantiation" : "class"); + "class template instantiation"); o << "; full constructor:\n"; printConstructor( o, options, manager, -- cgit