summaryrefslogtreecommitdiff
path: root/unodevtools/source/skeletonmaker/cpptypemaker.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'unodevtools/source/skeletonmaker/cpptypemaker.cxx')
-rw-r--r--unodevtools/source/skeletonmaker/cpptypemaker.cxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/unodevtools/source/skeletonmaker/cpptypemaker.cxx b/unodevtools/source/skeletonmaker/cpptypemaker.cxx
index abd301269f7d..51a17c48b4bf 100644
--- a/unodevtools/source/skeletonmaker/cpptypemaker.cxx
+++ b/unodevtools/source/skeletonmaker/cpptypemaker.cxx
@@ -537,12 +537,12 @@ void printMethods(std::ostream & o,
dynamic_cast< unoidl::InterfaceTypeEntity * >(ent.get()));
assert(ent2.is());
if (options.all || defaultvalue) {
- for (std::vector< OUString >::const_iterator i(
+ for (std::vector< unoidl::AnnotatedReference >::const_iterator i(
ent2->getDirectMandatoryBases().begin());
i != ent2->getDirectMandatoryBases().end(); ++i)
{
printMethods(
- o, options, manager, *i, generated, delegate, classname,
+ o, options, manager, i->name, generated, delegate, classname,
indentation, defaultvalue, propertyhelper);
}
if (!(ent2->getDirectAttributes().empty()
@@ -737,20 +737,20 @@ void printServiceMembers(
OString const & delegate)
{
assert(entity.is());
- for (std::vector< OUString >::const_iterator i(
+ for (std::vector< unoidl::AnnotatedReference >::const_iterator i(
entity->getDirectMandatoryBaseServices().begin());
i != entity->getDirectMandatoryBaseServices().end(); ++i)
{
- o << "\n// exported service " << *i << "\n";
- generateDocumentation(o, options, manager, u2b(*i), delegate);
- o << "\n// end of exported service " << *i << "\n";
+ o << "\n// exported service " << i->name << "\n";
+ generateDocumentation(o, options, manager, u2b(i->name), delegate);
+ o << "\n// end of exported service " << i->name << "\n";
}
- for (std::vector< OUString >::const_iterator i(
+ for (std::vector< unoidl::AnnotatedReference >::const_iterator i(
entity->getDirectMandatoryBaseInterfaces().begin());
i != entity->getDirectMandatoryBaseInterfaces().end(); ++i)
{
- o << "\n// supported interface " << *i << "\n";
- generateDocumentation(o, options, manager, u2b(*i), delegate);
+ o << "\n// supported interface " << i->name << "\n";
+ generateDocumentation(o, options, manager, u2b(i->name), delegate);
}
if (delegate.isEmpty()) {
o << "\n// properties of service \""<< name << "\"\n";