diff options
Diffstat (limited to 'oox/source/drawingml/textbodycontext.cxx')
-rw-r--r-- | oox/source/drawingml/textbodycontext.cxx | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/oox/source/drawingml/textbodycontext.cxx b/oox/source/drawingml/textbodycontext.cxx index 69b23960e7f2..9cfffdc186f9 100644 --- a/oox/source/drawingml/textbodycontext.cxx +++ b/oox/source/drawingml/textbodycontext.cxx @@ -33,8 +33,6 @@ using namespace ::com::sun::star::xml::sax; namespace oox { namespace drawingml { - - // CT_TextParagraph class TextParagraphContext : public ContextHandler2 { @@ -47,7 +45,6 @@ protected: TextParagraph& mrParagraph; }; - TextParagraphContext::TextParagraphContext( ContextHandler2Helper& rParent, TextParagraph& rPara ) : ContextHandler2( rParent ) , mrParagraph( rPara ) @@ -55,8 +52,6 @@ TextParagraphContext::TextParagraphContext( ContextHandler2Helper& rParent, Text mbEnableTrimSpace = false; } - - ContextHandlerRef TextParagraphContext::onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs ) { // EG_TextRun @@ -102,7 +97,6 @@ ContextHandlerRef TextParagraphContext::onCreateContext( sal_Int32 aElementToken return 0; } - RegularTextRunContext::RegularTextRunContext( ContextHandler2Helper& rParent, TextRunPtr pRunPtr ) : ContextHandler2( rParent ) , mpRunPtr( pRunPtr ) @@ -110,8 +104,6 @@ RegularTextRunContext::RegularTextRunContext( ContextHandler2Helper& rParent, Te { } - - void RegularTextRunContext::onEndElement( ) { switch( getCurrentElement() ) @@ -130,8 +122,6 @@ void RegularTextRunContext::onEndElement( ) } } - - void RegularTextRunContext::onCharacters( const OUString& aChars ) { if( mbIsInText ) @@ -140,8 +130,6 @@ void RegularTextRunContext::onCharacters( const OUString& aChars ) } } - - ContextHandlerRef RegularTextRunContext::onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs) { switch( aElementToken ) @@ -163,16 +151,12 @@ ContextHandlerRef RegularTextRunContext::onCreateContext( sal_Int32 aElementToke return this; } - - TextBodyContext::TextBodyContext( ContextHandler2Helper& rParent, TextBody& rTextBody ) : ContextHandler2( rParent ) , mrTextBody( rTextBody ) { } - - ContextHandlerRef TextBodyContext::onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs ) { switch( aElementToken ) @@ -199,8 +183,6 @@ ContextHandlerRef TextBodyContext::onCreateContext( sal_Int32 aElementToken, con return 0; } - - } } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |