diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-04-02 11:25:36 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-04-02 11:25:36 +0200 |
commit | 63f00101c578d019efc5d5f6b9008077e559144f (patch) | |
tree | 376f1b5cd2fa6e5f22592d8692080f0e118e2d4a /chart2 | |
parent | c433a482cf249485e7fa3e71362b107f0eafa705 (diff) |
fix the build on non-C++11 platforms
Diffstat (limited to 'chart2')
-rw-r--r-- | chart2/source/controller/dialogs/tp_ChartType.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chart2/source/controller/dialogs/tp_ChartType.cxx b/chart2/source/controller/dialogs/tp_ChartType.cxx index 08fc78dcae25..5601789a82cd 100644 --- a/chart2/source/controller/dialogs/tp_ChartType.cxx +++ b/chart2/source/controller/dialogs/tp_ChartType.cxx @@ -443,9 +443,6 @@ private: void adjustControlPositions(); void adjustSize(); - const sal_uInt16 CUBIC_SPLINE_POS = 0; - const sal_uInt16 B_SPLINE_POS = 1; - private: ListBox* m_pLB_Spline_Type; @@ -454,6 +451,9 @@ private: NumericField* m_pMF_SplineOrder; }; +const sal_uInt16 CUBIC_SPLINE_POS = 0; +const sal_uInt16 B_SPLINE_POS = 1; + SplinePropertiesDialog::SplinePropertiesDialog( Window* pParent ) : ModalDialog( pParent, "SmoothLinesDialog", "modules/schart/ui/smoothlinesdlg.ui") { |