summaryrefslogtreecommitdiff
path: root/oox/source/drawingml/chart/seriescontext.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'oox/source/drawingml/chart/seriescontext.cxx')
-rw-r--r--oox/source/drawingml/chart/seriescontext.cxx38
1 files changed, 0 insertions, 38 deletions
diff --git a/oox/source/drawingml/chart/seriescontext.cxx b/oox/source/drawingml/chart/seriescontext.cxx
index fde29520cb1e..5070f26df9c8 100644
--- a/oox/source/drawingml/chart/seriescontext.cxx
+++ b/oox/source/drawingml/chart/seriescontext.cxx
@@ -29,14 +29,10 @@ namespace oox {
namespace drawingml {
namespace chart {
-
-
using ::oox::core::ContextHandler2;
using ::oox::core::ContextHandler2Helper;
using ::oox::core::ContextHandlerRef;
-
-
namespace {
ContextHandlerRef lclDataLabelSharedCreateContext( ContextHandler2& rContext,
@@ -91,8 +87,6 @@ void lclDataLabelSharedCharacters( ContextHandler2& rContext, const OUString& rC
} // namespace
-
-
DataLabelContext::DataLabelContext( ContextHandler2Helper& rParent, DataLabelModel& rModel ) :
ContextBase< DataLabelModel >( rParent, rModel )
{
@@ -122,8 +116,6 @@ void DataLabelContext::onCharacters( const OUString& rChars )
lclDataLabelSharedCharacters( *this, rChars, mrModel );
}
-
-
DataLabelsContext::DataLabelsContext( ContextHandler2Helper& rParent, DataLabelsModel& rModel ) :
ContextBase< DataLabelsModel >( rParent, rModel )
{
@@ -154,8 +146,6 @@ void DataLabelsContext::onCharacters( const OUString& rChars )
lclDataLabelSharedCharacters( *this, rChars, mrModel );
}
-
-
PictureOptionsContext::PictureOptionsContext( ContextHandler2Helper& rParent, PictureOptionsModel& rModel ) :
ContextBase< PictureOptionsModel >( rParent, rModel )
{
@@ -191,8 +181,6 @@ ContextHandlerRef PictureOptionsContext::onCreateContext( sal_Int32 nElement, co
return 0;
}
-
-
ErrorBarContext::ErrorBarContext( ContextHandler2Helper& rParent, ErrorBarModel& rModel ) :
ContextBase< ErrorBarModel >( rParent, rModel )
{
@@ -232,8 +220,6 @@ ContextHandlerRef ErrorBarContext::onCreateContext( sal_Int32 nElement, const At
return 0;
}
-
-
TrendlineLabelContext::TrendlineLabelContext( ContextHandler2Helper& rParent, TrendlineLabelModel& rModel ) :
ContextBase< TrendlineLabelModel >( rParent, rModel )
{
@@ -262,8 +248,6 @@ ContextHandlerRef TrendlineLabelContext::onCreateContext( sal_Int32 nElement, co
return 0;
}
-
-
TrendlineContext::TrendlineContext( ContextHandler2Helper& rParent, TrendlineModel& rModel ) :
ContextBase< TrendlineModel >( rParent, rModel )
{
@@ -319,8 +303,6 @@ void TrendlineContext::onCharacters( const OUString& rChars )
mrModel.maName = rChars;
}
-
-
DataPointContext::DataPointContext( ContextHandler2Helper& rParent, DataPointModel& rModel ) :
ContextBase< DataPointModel >( rParent, rModel )
{
@@ -377,8 +359,6 @@ ContextHandlerRef DataPointContext::onCreateContext( sal_Int32 nElement, const A
return 0;
}
-
-
SeriesContextBase::SeriesContextBase( ContextHandler2Helper& rParent, SeriesModel& rModel ) :
ContextBase< SeriesModel >( rParent, rModel )
{
@@ -425,8 +405,6 @@ ContextHandlerRef SeriesContextBase::onCreateContext( sal_Int32 nElement, const
return 0;
}
-
-
AreaSeriesContext::AreaSeriesContext( ContextHandler2Helper& rParent, SeriesModel& rModel ) :
SeriesContextBase( rParent, rModel )
{
@@ -461,8 +439,6 @@ ContextHandlerRef AreaSeriesContext::onCreateContext( sal_Int32 nElement, const
return SeriesContextBase::onCreateContext( nElement, rAttribs );
}
-
-
BarSeriesContext::BarSeriesContext( ContextHandler2Helper& rParent, SeriesModel& rModel ) :
SeriesContextBase( rParent, rModel )
{
@@ -507,8 +483,6 @@ ContextHandlerRef BarSeriesContext::onCreateContext( sal_Int32 nElement, const A
return SeriesContextBase::onCreateContext( nElement, rAttribs );
}
-
-
BubbleSeriesContext::BubbleSeriesContext( ContextHandler2Helper& rParent, SeriesModel& rModel ) :
SeriesContextBase( rParent, rModel )
{
@@ -553,8 +527,6 @@ ContextHandlerRef BubbleSeriesContext::onCreateContext( sal_Int32 nElement, cons
return SeriesContextBase::onCreateContext( nElement, rAttribs );
}
-
-
LineSeriesContext::LineSeriesContext( ContextHandler2Helper& rParent, SeriesModel& rModel ) :
SeriesContextBase( rParent, rModel )
{
@@ -596,8 +568,6 @@ ContextHandlerRef LineSeriesContext::onCreateContext( sal_Int32 nElement, const
return SeriesContextBase::onCreateContext( nElement, rAttribs );
}
-
-
PieSeriesContext::PieSeriesContext( ContextHandler2Helper& rParent, SeriesModel& rModel ) :
SeriesContextBase( rParent, rModel )
{
@@ -631,8 +601,6 @@ ContextHandlerRef PieSeriesContext::onCreateContext( sal_Int32 nElement, const A
return SeriesContextBase::onCreateContext( nElement, rAttribs );
}
-
-
RadarSeriesContext::RadarSeriesContext( ContextHandler2Helper& rParent, SeriesModel& rModel ) :
SeriesContextBase( rParent, rModel )
{
@@ -670,8 +638,6 @@ ContextHandlerRef RadarSeriesContext::onCreateContext( sal_Int32 nElement, const
return SeriesContextBase::onCreateContext( nElement, rAttribs );
}
-
-
ScatterSeriesContext::ScatterSeriesContext( ContextHandler2Helper& rParent, SeriesModel& rModel ) :
SeriesContextBase( rParent, rModel )
{
@@ -713,8 +679,6 @@ ContextHandlerRef ScatterSeriesContext::onCreateContext( sal_Int32 nElement, con
return SeriesContextBase::onCreateContext( nElement, rAttribs );
}
-
-
SurfaceSeriesContext::SurfaceSeriesContext( ContextHandler2Helper& rParent, SeriesModel& rModel ) :
SeriesContextBase( rParent, rModel )
{
@@ -741,8 +705,6 @@ ContextHandlerRef SurfaceSeriesContext::onCreateContext( sal_Int32 nElement, con
return SeriesContextBase::onCreateContext( nElement, rAttribs );
}
-
-
} // namespace chart
} // namespace drawingml
} // namespace oox