summaryrefslogtreecommitdiff
path: root/chart2
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2012-07-02 21:57:55 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2012-07-02 22:07:55 +0900
commitd221d4e5a7c8bcb019d75786c45de2c85bbadb7f (patch)
tree3a608d53e2916d577dfd0c12addfe7fc0692d3bf /chart2
parent2b6e9bd89a5f93e4352ef1cd0801310d9558343f (diff)
removed unnecessary forward declarations of class
this also moved necessary ones to right headers Change-Id: Idda93aeaa1fdfeda602b14e3b233ffd1cf27c0cf
Diffstat (limited to 'chart2')
-rw-r--r--chart2/source/controller/accessibility/AccessibleChartElement.hxx3
-rw-r--r--chart2/source/controller/dialogs/DataBrowserModel.hxx3
-rw-r--r--chart2/source/controller/dialogs/tp_ChartType.hxx3
-rw-r--r--chart2/source/controller/dialogs/tp_DataSource.hxx5
-rw-r--r--chart2/source/controller/inc/AccessibleBase.hxx2
-rw-r--r--chart2/source/controller/inc/StatisticsItemConverter.hxx2
-rw-r--r--chart2/source/controller/inc/dlg_ChartType_UNO.hxx1
-rw-r--r--chart2/source/controller/main/ChartController.hxx1
-rw-r--r--chart2/source/controller/main/UndoActions.hxx7
-rw-r--r--chart2/source/inc/ModifyListenerHelper.hxx6
-rw-r--r--chart2/source/model/inc/DataSeries.hxx4
-rw-r--r--chart2/source/view/axes/VAxisOrGridBase.hxx3
-rw-r--r--chart2/source/view/charttypes/AreaChart.hxx1
13 files changed, 0 insertions, 41 deletions
diff --git a/chart2/source/controller/accessibility/AccessibleChartElement.hxx b/chart2/source/controller/accessibility/AccessibleChartElement.hxx
index 9ee03835fae4..4d58186cde4f 100644
--- a/chart2/source/controller/accessibility/AccessibleChartElement.hxx
+++ b/chart2/source/controller/accessibility/AccessibleChartElement.hxx
@@ -40,9 +40,6 @@
#include <map>
#include <boost/shared_ptr.hpp>
-class SfxItemSet;
-class SdrObject;
-
namespace chart
{
diff --git a/chart2/source/controller/dialogs/DataBrowserModel.hxx b/chart2/source/controller/dialogs/DataBrowserModel.hxx
index 7d6e99a3883e..f334ab510ee5 100644
--- a/chart2/source/controller/dialogs/DataBrowserModel.hxx
+++ b/chart2/source/controller/dialogs/DataBrowserModel.hxx
@@ -37,9 +37,6 @@
namespace com { namespace sun { namespace star { namespace chart2 {
class XDataSeries;
class XChartType;
- namespace data {
- class XLabeledDataSequence;
- }
}}}}
namespace chart
diff --git a/chart2/source/controller/dialogs/tp_ChartType.hxx b/chart2/source/controller/dialogs/tp_ChartType.hxx
index 9d7cdfa8d1b0..228149909d34 100644
--- a/chart2/source/controller/dialogs/tp_ChartType.hxx
+++ b/chart2/source/controller/dialogs/tp_ChartType.hxx
@@ -42,9 +42,6 @@ namespace chart
//.............................................................................
//-----------------------------------------------------------------------------
-/**
-*/
-class ChartTypeResourceGroup;
class AxisTypeResourceGroup;
class Dim3DLookResourceGroup;
class StackingResourceGroup;
diff --git a/chart2/source/controller/dialogs/tp_DataSource.hxx b/chart2/source/controller/dialogs/tp_DataSource.hxx
index 75a87910c014..c7edca5550c3 100644
--- a/chart2/source/controller/dialogs/tp_DataSource.hxx
+++ b/chart2/source/controller/dialogs/tp_DataSource.hxx
@@ -50,11 +50,6 @@
#include "RangeSelectionButton.hxx"
#include "RangeEdit.hxx"
-namespace com { namespace sun { namespace star {
- namespace chart2 {
- class XChartType;
-}}}}
-
namespace chart
{
diff --git a/chart2/source/controller/inc/AccessibleBase.hxx b/chart2/source/controller/inc/AccessibleBase.hxx
index 17e4433f5341..afd90aff3f51 100644
--- a/chart2/source/controller/inc/AccessibleBase.hxx
+++ b/chart2/source/controller/inc/AccessibleBase.hxx
@@ -51,8 +51,6 @@
#include "MutexContainer.hxx"
-class SfxItemSet;
-class SdrObject;
class SdrView;
namespace accessibility
diff --git a/chart2/source/controller/inc/StatisticsItemConverter.hxx b/chart2/source/controller/inc/StatisticsItemConverter.hxx
index eb391564ca0b..62bf886aa2de 100644
--- a/chart2/source/controller/inc/StatisticsItemConverter.hxx
+++ b/chart2/source/controller/inc/StatisticsItemConverter.hxx
@@ -27,8 +27,6 @@
#include <vector>
-class SdrModel;
-
namespace chart
{
namespace wrapper
diff --git a/chart2/source/controller/inc/dlg_ChartType_UNO.hxx b/chart2/source/controller/inc/dlg_ChartType_UNO.hxx
index f1223c8074d4..ac3679fa93a4 100644
--- a/chart2/source/controller/inc/dlg_ChartType_UNO.hxx
+++ b/chart2/source/controller/inc/dlg_ChartType_UNO.hxx
@@ -32,7 +32,6 @@ namespace chart
{
//.............................................................................
typedef ::svt::OGenericUnoDialog ChartTypeUnoDlg_BASE;
-class ChartType;
class ChartTypeUnoDlg : public ChartTypeUnoDlg_BASE
,public ::comphelper::OPropertyArrayUsageHelper< ChartTypeUnoDlg >
{
diff --git a/chart2/source/controller/main/ChartController.hxx b/chart2/source/controller/main/ChartController.hxx
index b142f161f69c..cfe1c05ae775 100644
--- a/chart2/source/controller/main/ChartController.hxx
+++ b/chart2/source/controller/main/ChartController.hxx
@@ -139,7 +139,6 @@ public:
class ChartWindow;
class DrawModelWrapper;
class DrawViewWrapper;
-class ViewElementListProvider;
class ReferenceSizeProvider;
class ChartController : public ::cppu::WeakImplHelper12 <
diff --git a/chart2/source/controller/main/UndoActions.hxx b/chart2/source/controller/main/UndoActions.hxx
index e57a379429f6..cda2b656b1e5 100644
--- a/chart2/source/controller/main/UndoActions.hxx
+++ b/chart2/source/controller/main/UndoActions.hxx
@@ -38,13 +38,6 @@
class SdrUndoAction;
-namespace com { namespace sun { namespace star {
-namespace chart2 {
- class XInternalDataProvider;
-}
-}}}
-
-
namespace chart
{
class ChartModelClone;
diff --git a/chart2/source/inc/ModifyListenerHelper.hxx b/chart2/source/inc/ModifyListenerHelper.hxx
index dd368cddab7a..2eee3a819027 100644
--- a/chart2/source/inc/ModifyListenerHelper.hxx
+++ b/chart2/source/inc/ModifyListenerHelper.hxx
@@ -36,12 +36,6 @@
#include <functional>
#include <utility>
-namespace com { namespace sun { namespace star {
-namespace chart2
-{
- class XChartDocument;
-}}}}
-
namespace chart
{
namespace ModifyListenerHelper
diff --git a/chart2/source/model/inc/DataSeries.hxx b/chart2/source/model/inc/DataSeries.hxx
index f180b96ddd61..dda7652e7dad 100644
--- a/chart2/source/model/inc/DataSeries.hxx
+++ b/chart2/source/model/inc/DataSeries.hxx
@@ -45,10 +45,6 @@
#include "MutexContainer.hxx"
#include "OPropertySet.hxx"
-namespace com { namespace sun { namespace star { namespace style {
- class XStyle;
-}}}}
-
namespace chart
{
diff --git a/chart2/source/view/axes/VAxisOrGridBase.hxx b/chart2/source/view/axes/VAxisOrGridBase.hxx
index fd70eefd6fb6..6827905fa487 100644
--- a/chart2/source/view/axes/VAxisOrGridBase.hxx
+++ b/chart2/source/view/axes/VAxisOrGridBase.hxx
@@ -34,9 +34,6 @@ namespace chart
//.............................................................................
//-----------------------------------------------------------------------------
-/**
-*/
-class ShapeFactory;
class TickFactory;
class VAxisOrGridBase : public PlotterBase
diff --git a/chart2/source/view/charttypes/AreaChart.hxx b/chart2/source/view/charttypes/AreaChart.hxx
index e370cb9142a5..cc8b9ae0012b 100644
--- a/chart2/source/view/charttypes/AreaChart.hxx
+++ b/chart2/source/view/charttypes/AreaChart.hxx
@@ -27,7 +27,6 @@
namespace chart
{
//.............................................................................
-class AreaPositionHelper;
class AreaChart : public VSeriesPlotter
{