diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-08-26 15:56:20 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-08-26 16:20:50 +0200 |
commit | 975e230f08a664c5afc596d07ea9165e667c28f0 (patch) | |
tree | 2e786e49b21f572a6836bcde5168df82f5e3d40e /unodevtools | |
parent | 65afcc5a9e440ef4b1ac15800b2c32c4219a2908 (diff) |
unodevtools: why does the C++ generating code check java5 flag?
Change-Id: I598698948a3543f1c020cc4a4b8db8799eb314a5
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, |