diff options
Diffstat (limited to 'unodevtools')
-rw-r--r-- | unodevtools/source/skeletonmaker/cpptypemaker.cxx | 4 |
1 files 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, |