diff options
-rw-r--r-- | xmloff/source/chart/SchXMLAxisContext.cxx | 1 | ||||
-rw-r--r-- | xmloff/source/chart/XMLChartPropertyContext.cxx | 2 | ||||
-rw-r--r-- | xmloff/source/draw/XMLShapePropertySetContext.cxx | 2 | ||||
-rw-r--r-- | xmloff/source/draw/sdxmlimp.cxx | 1 | ||||
-rw-r--r-- | xmloff/source/draw/shapeimport.cxx | 1 | ||||
-rw-r--r-- | xmloff/source/draw/ximpbody.cxx | 1 | ||||
-rw-r--r-- | xmloff/source/draw/ximpstyl.cxx | 3 |
7 files changed, 0 insertions, 11 deletions
diff --git a/xmloff/source/chart/SchXMLAxisContext.cxx b/xmloff/source/chart/SchXMLAxisContext.cxx index 13bec6e8e15a..2f312c7e21b1 100644 --- a/xmloff/source/chart/SchXMLAxisContext.cxx +++ b/xmloff/source/chart/SchXMLAxisContext.cxx @@ -598,7 +598,6 @@ css::uno::Reference< css::xml::sax::XFastContextHandler > SchXMLAxisContext::cre case XML_ELEMENT(CHART_EXT, XML_DATE_SCALE): m_bDateScaleImported = true; return new DateScaleContext( GetImport(), m_xAxisProps ); - break; case XML_ELEMENT(CHART, XML_GRID): { diff --git a/xmloff/source/chart/XMLChartPropertyContext.cxx b/xmloff/source/chart/XMLChartPropertyContext.cxx index 83cc7bb9aaf8..d39b36bfc3ad 100644 --- a/xmloff/source/chart/XMLChartPropertyContext.cxx +++ b/xmloff/source/chart/XMLChartPropertyContext.cxx @@ -53,10 +53,8 @@ css::uno::Reference< css::xml::sax::XFastContextHandler > XMLChartPropertyContex { case XML_SCH_CONTEXT_SPECIAL_SYMBOL_IMAGE: return new XMLSymbolImageContext( GetImport(), nElement, rProp, rProperties ); - break; case XML_SCH_CONTEXT_SPECIAL_LABEL_SEPARATOR: return new XMLLabelSeparatorContext( GetImport(), nElement, rProp, rProperties ); - break; } // default / no context yet: create child context by base class diff --git a/xmloff/source/draw/XMLShapePropertySetContext.cxx b/xmloff/source/draw/XMLShapePropertySetContext.cxx index b8bc00122044..456dc215b9db 100644 --- a/xmloff/source/draw/XMLShapePropertySetContext.cxx +++ b/xmloff/source/draw/XMLShapePropertySetContext.cxx @@ -74,12 +74,10 @@ css::uno::Reference< css::xml::sax::XFastContextHandler > XMLShapePropertySetCon mnBulletIndex = rProp.mnIndex; mxBulletStyle = new SvxXMLListStyleContext( GetImport() ); return mxBulletStyle.get(); - break; case CTF_TABSTOP: return new SvxXMLTabStopImportContext( GetImport(), nElement, rProp, rProperties ); - break; } return SvXMLPropertySetContext::createFastChildContext( nElement, diff --git a/xmloff/source/draw/sdxmlimp.cxx b/xmloff/source/draw/sdxmlimp.cxx index ae5dba2c6639..b768eaf14d32 100644 --- a/xmloff/source/draw/sdxmlimp.cxx +++ b/xmloff/source/draw/sdxmlimp.cxx @@ -162,7 +162,6 @@ uno::Reference< xml::sax::XFastContextHandler > SAL_CALL SdXMLDocContext_Impl::c case XML_ELEMENT(OFFICE, XML_FONT_FACE_DECLS): { return GetSdImport().CreateFontDeclsContext(); - break; } case XML_ELEMENT(OFFICE, XML_META): { diff --git a/xmloff/source/draw/shapeimport.cxx b/xmloff/source/draw/shapeimport.cxx index c2fb5999fdea..a68105ea4b70 100644 --- a/xmloff/source/draw/shapeimport.cxx +++ b/xmloff/source/draw/shapeimport.cxx @@ -350,7 +350,6 @@ SvXMLShapeContext* XMLShapeImportHelper::CreateGroupChildContext( } case XML_ELEMENT(DRAW, XML_A): return new SdXMLShapeLinkContext( rImport, xAttrList, rShapes ); - break; // add other shapes here... default: XMLOFF_WARN_UNKNOWN_ELEMENT("xmloff", nElement); diff --git a/xmloff/source/draw/ximpbody.cxx b/xmloff/source/draw/ximpbody.cxx index 1fb556828199..f6dad065d9f6 100644 --- a/xmloff/source/draw/ximpbody.cxx +++ b/xmloff/source/draw/ximpbody.cxx @@ -336,7 +336,6 @@ css::uno::Reference< css::xml::sax::XFastContextHandler > SdXMLBodyContext::crea case XML_ELEMENT(PRESENTATION, XML_DATE_TIME_DECL): { return new SdXMLHeaderFooterDeclContext( GetImport(), xAttrList ); - break; } default: XMLOFF_WARN_UNKNOWN_ELEMENT("xmloff", nElement); diff --git a/xmloff/source/draw/ximpstyl.cxx b/xmloff/source/draw/ximpstyl.cxx index ac23bc3345a2..05ecaf377eec 100644 --- a/xmloff/source/draw/ximpstyl.cxx +++ b/xmloff/source/draw/ximpstyl.cxx @@ -896,12 +896,10 @@ SvXMLStyleContext* SdXMLStylesContext::CreateStyleStyleChildContext( { case XmlStyleFamily::SD_DRAWINGPAGE_ID: return new SdXMLDrawingPageStyleContext(GetSdImport(), *this ); - break; case XmlStyleFamily::TABLE_CELL: case XmlStyleFamily::TABLE_COLUMN: case XmlStyleFamily::TABLE_ROW: return new XMLShapeStyleContext( GetSdImport(), *this, nFamily ); - break; default: break; } @@ -918,7 +916,6 @@ SvXMLStyleContext* SdXMLStylesContext::CreateDefaultStyleStyleChildContext( { case XmlStyleFamily::SD_GRAPHICS_ID: return new XMLGraphicsDefaultStyle(GetSdImport(), *this ); - break; default: break; } |