diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-06-24 19:34:03 +0300 |
---|---|---|
committer | Fridrich Strba <fridrich@documentfoundation.org> | 2013-06-28 09:02:50 +0000 |
commit | 8810d26c92c4f70b2a05c63088e30fc780ed6caf (patch) | |
tree | 0af69efb6f42cb257e2f1ba2d740d2283d8725c0 /include/oox/drawingml/objectdefaultcontext.hxx | |
parent | bc8f89931ab4cc0537e7710b6bc375c844ba6e68 (diff) |
Convert all ContextHandler-derived clases over to ContextHandler2
Change-Id: I81f54e3b7d29a0807ec4c2f082ae00fd6e1d6138
Reviewed-on: https://gerrit.libreoffice.org/4580
Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org>
Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
Diffstat (limited to 'include/oox/drawingml/objectdefaultcontext.hxx')
-rw-r--r-- | include/oox/drawingml/objectdefaultcontext.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/oox/drawingml/objectdefaultcontext.hxx b/include/oox/drawingml/objectdefaultcontext.hxx index b8b1d5b95ede..13e27a7b7f56 100644 --- a/include/oox/drawingml/objectdefaultcontext.hxx +++ b/include/oox/drawingml/objectdefaultcontext.hxx @@ -20,17 +20,17 @@ #ifndef OOX_DRAWINGML_OBJECTDEFAULTCONTEXT_HXX #define OOX_DRAWINGML_OBJECTDEFAULTCONTEXT_HXX -#include "oox/core/contexthandler.hxx" +#include "oox/core/contexthandler2.hxx" namespace oox { namespace drawingml { class Theme; -class objectDefaultContext : public oox::core::ContextHandler +class objectDefaultContext : public oox::core::ContextHandler2 { public: - objectDefaultContext( ::oox::core::ContextHandler& rParent, Theme& rTheme ); - virtual ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XFastContextHandler > SAL_CALL createFastChildContext( ::sal_Int32 Element, const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XFastAttributeList >& Attribs ) throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException); + objectDefaultContext( ::oox::core::ContextHandler2Helper& rParent, Theme& rTheme ); + virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) SAL_OVERRIDE; protected: Theme& mrTheme; |