summaryrefslogtreecommitdiff
path: root/xmloff/source/text/XMLAutoTextEventImport.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/text/XMLAutoTextEventImport.cxx')
-rw-r--r--xmloff/source/text/XMLAutoTextEventImport.cxx21
1 files changed, 8 insertions, 13 deletions
diff --git a/xmloff/source/text/XMLAutoTextEventImport.cxx b/xmloff/source/text/XMLAutoTextEventImport.cxx
index 3b17e654c13e..09cce6ffd0ae 100644
--- a/xmloff/source/text/XMLAutoTextEventImport.cxx
+++ b/xmloff/source/text/XMLAutoTextEventImport.cxx
@@ -41,24 +41,21 @@ using ::com::sun::star::lang::XMultiServiceFactory;
using ::xmloff::token::XML_AUTO_TEXT_EVENTS;
XMLAutoTextEventImport::XMLAutoTextEventImport(
- const css::uno::Reference< css::uno::XComponentContext >& xContext)
-: SvXMLImport(xContext, "")
+ const css::uno::Reference<css::uno::XComponentContext>& xContext)
+ : SvXMLImport(xContext, "")
{
}
-XMLAutoTextEventImport::~XMLAutoTextEventImport() throw()
-{
-}
+XMLAutoTextEventImport::~XMLAutoTextEventImport() throw() {}
-void XMLAutoTextEventImport::initialize(
- const Sequence<Any> & rArguments )
+void XMLAutoTextEventImport::initialize(const Sequence<Any>& rArguments)
{
// The events may come as either an XNameReplace or XEventsSupplier.
- for( const auto& rArgument : rArguments )
+ for (const auto& rArgument : rArguments)
{
const Type& rType = rArgument.getValueType();
- if ( rType == cppu::UnoType<XEventsSupplier>::get())
+ if (rType == cppu::UnoType<XEventsSupplier>::get())
{
Reference<XEventsSupplier> xSupplier;
rArgument >>= xSupplier;
@@ -77,12 +74,10 @@ void XMLAutoTextEventImport::initialize(
SvXMLImport::initialize(rArguments);
}
-
SvXMLImportContext* XMLAutoTextEventImport::CreateFastContext(
- sal_Int32 nElement,
- const Reference<css::xml::sax::XFastAttributeList> & /*xAttrList*/ )
+ sal_Int32 nElement, const Reference<css::xml::sax::XFastAttributeList>& /*xAttrList*/)
{
- if ( xEvents.is() && nElement == XML_ELEMENT(OOO, XML_AUTO_TEXT_EVENTS) )
+ if (xEvents.is() && nElement == XML_ELEMENT(OOO, XML_AUTO_TEXT_EVENTS))
{
return new XMLAutoTextContainerEventImport(*this, xEvents);
}