Kaydet (Commit) c9221611 authored tarafından Jochen Nitschke's avatar Jochen Nitschke

tdf#95416 remove ../ style include

move (default) dtors to source files, where members are complete

Change-Id: I9f3273d322b62cb01e546ff30d9fb4d37747bb3b
Reviewed-on: https://gerrit.libreoffice.org/28400Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarJochen Nitschke <j.nitschke+logerrit@ok.de>
üst d54773ad
...@@ -88,6 +88,8 @@ CreationWizard::CreationWizard( vcl::Window* pParent, const uno::Reference< fram ...@@ -88,6 +88,8 @@ CreationWizard::CreationWizard( vcl::Window* pParent, const uno::Reference< fram
ActivatePage(); ActivatePage();
} }
CreationWizard::~CreationWizard() = default;
VclPtr<TabPage> CreationWizard::createPage(WizardState nState) VclPtr<TabPage> CreationWizard::createPage(WizardState nState)
{ {
VclPtr<svt::OWizardPage> pRet; VclPtr<svt::OWizardPage> pRet;
......
...@@ -34,6 +34,8 @@ DataLabelsDialog::DataLabelsDialog(vcl::Window* pWindow, const SfxItemSet& rInAt ...@@ -34,6 +34,8 @@ DataLabelsDialog::DataLabelsDialog(vcl::Window* pWindow, const SfxItemSet& rInAt
Reset(); Reset();
} }
DataLabelsDialog::~DataLabelsDialog() = default;
void DataLabelsDialog::Reset() void DataLabelsDialog::Reset()
{ {
m_apDataLabelResources->Reset(m_rInAttrs); m_apDataLabelResources->Reset(m_rInAttrs);
......
...@@ -22,7 +22,6 @@ ...@@ -22,7 +22,6 @@
#include "TimerTriggeredControllerLock.hxx" #include "TimerTriggeredControllerLock.hxx"
#include "TabPageNotifiable.hxx" #include "TabPageNotifiable.hxx"
#include "../dialogs/DialogModel.hxx"
#include <com/sun/star/chart2/XChartDocument.hpp> #include <com/sun/star/chart2/XChartDocument.hpp>
#include <svtools/roadmapwizard.hxx> #include <svtools/roadmapwizard.hxx>
...@@ -35,6 +34,7 @@ namespace chart ...@@ -35,6 +34,7 @@ namespace chart
class RangeChooserTabPage; class RangeChooserTabPage;
class DataSourceTabPage; class DataSourceTabPage;
class DialogModel;
class ChartTypeTemplateProvider; class ChartTypeTemplateProvider;
class CreationWizard : public svt::RoadmapWizard, public TabPageNotifiable class CreationWizard : public svt::RoadmapWizard, public TabPageNotifiable
...@@ -45,6 +45,7 @@ public: ...@@ -45,6 +45,7 @@ public:
, const css::uno::Reference< css::uno::XComponentContext >& xContext ); , const css::uno::Reference< css::uno::XComponentContext >& xContext );
CreationWizard() = delete; CreationWizard() = delete;
virtual ~CreationWizard() override;
// TabPageNotifiable // TabPageNotifiable
virtual void setInvalidPage( TabPage * pTabPage ) override; virtual void setInvalidPage( TabPage * pTabPage ) override;
......
...@@ -23,12 +23,12 @@ ...@@ -23,12 +23,12 @@
#include <vcl/button.hxx> #include <vcl/button.hxx>
#include <svl/itemset.hxx> #include <svl/itemset.hxx>
#include <memory> #include <memory>
#include "../dialogs/res_DataLabel.hxx"
class SvNumberFormatter; class SvNumberFormatter;
namespace chart namespace chart
{ {
class DataLabelResources;
class DataLabelsDialog : public ModalDialog class DataLabelsDialog : public ModalDialog
{ {
...@@ -44,6 +44,7 @@ private: ...@@ -44,6 +44,7 @@ private:
public: public:
DataLabelsDialog(vcl::Window* pParent, const SfxItemSet& rInAttrs, SvNumberFormatter* pFormatter); DataLabelsDialog(vcl::Window* pParent, const SfxItemSet& rInAttrs, SvNumberFormatter* pFormatter);
virtual ~DataLabelsDialog() override;
void FillItemSet(SfxItemSet& rOutAttrs); void FillItemSet(SfxItemSet& rOutAttrs);
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment