Skip to content

Commit

Permalink
Merge 890a115 into 73101f4
Browse files Browse the repository at this point in the history
  • Loading branch information
agarny committed Nov 14, 2019
2 parents 73101f4 + 890a115 commit 175b24d
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 7 deletions.
2 changes: 0 additions & 2 deletions src/plugins/miscellaneous/Core/src/tabbarwidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,6 @@ TabBarWidget::~TabBarWidget()

delete style();
}
#else
TabBarWidget::~TabBarWidget() = default;
#endif

//==============================================================================
Expand Down
2 changes: 2 additions & 0 deletions src/plugins/miscellaneous/Core/src/tabbarwidget.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ class CORE_EXPORT TabBarWidget : public QTabBar

public:
explicit TabBarWidget(QWidget *pParent);
#ifdef Q_OS_MAC
~TabBarWidget() override;
#endif

int oldIndex() const;
void setOldIndex(int pOldIndex);
Expand Down
4 changes: 0 additions & 4 deletions src/plugins/support/SimulationSupport/src/simulation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,6 @@ SimulationObject::SimulationObject(Simulation *pSimulation) :

//==============================================================================

SimulationObject::~SimulationObject() = default;

//==============================================================================

Simulation * SimulationObject::simulation() const
{
// Return our simulation
Expand Down
1 change: 0 additions & 1 deletion src/plugins/support/SimulationSupport/src/simulation.h
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ class SimulationObject : public QObject

public:
explicit SimulationObject(Simulation *pSimulation);
~SimulationObject() override;

public slots:
Simulation * simulation() const;
Expand Down

0 comments on commit 175b24d

Please sign in to comment.