diff options
author | Katarina Behrens <Katarina.Behrens@cib.de> | 2015-04-22 22:56:30 +0200 |
---|---|---|
committer | Katarina Behrens <Katarina.Behrens@cib.de> | 2015-04-22 23:03:45 +0200 |
commit | f89f3c56fec75b122ce392b7736d7585fc7f2279 (patch) | |
tree | 8c1f33ad3c5c332e81c97748774bb0ce05fe3fcc | |
parent | 1a31dd5ec4ede142044eb58d2d1e03709a6d12cd (diff) |
Related tdf#88056: more UNO stuff was missing
Change-Id: I42fae657084878f0d476b40dd5d04fadc5e34bdb
-rw-r--r-- | sd/source/ui/unoidl/unomodel.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sd/source/ui/unoidl/unomodel.cxx b/sd/source/ui/unoidl/unomodel.cxx index bc2c3e01c848..369ae83699d7 100644 --- a/sd/source/ui/unoidl/unomodel.cxx +++ b/sd/source/ui/unoidl/unomodel.cxx @@ -931,6 +931,12 @@ css::uno::Reference<css::uno::XInterface> SdXImpressDocument::create( return (::cppu::OWeakObject * )new SvxUnoTextField( text::textfield::Type::PRESENTATION_DATE_TIME ); } + if( aServiceSpecifier == "com.sun.star.presentation.TextField.PageTitle" || + aServiceSpecifier == "com.sun.star.presentation.textfield.PageTitle" ) + { + return (::cppu::OWeakObject * )new SvxUnoTextField( text::textfield::Type::PRESENTATION_PAGE_TITLE ); + } + if( aServiceSpecifier == "com.sun.star.xml.NamespaceMap" ) { static sal_uInt16 aWhichIds[] = { SDRATTR_XMLATTRIBUTES, EE_CHAR_XMLATTRIBS, EE_PARA_XMLATTRIBS, 0 }; |