Removed empty destructor

This commit is contained in:
Dániel Battyányi
2023-08-20 13:29:49 +02:00
parent 6715e89696
commit af22f4195d
2 changed files with 0 additions and 4 deletions

View File

@@ -1981,9 +1981,6 @@ SpotPicker::SpotPicker(int const defaultValue, Glib::ustring const &buttonKey, G
this->attach (_spotSizeSetter, 2, 0, 1, 1); this->attach (_spotSizeSetter, 2, 0, 1, 1);
_spotSizeSetter.signal_changed().connect( sigc::mem_fun(*this, &SpotPicker::spotSizeChanged)); _spotSizeSetter.signal_changed().connect( sigc::mem_fun(*this, &SpotPicker::spotSizeChanged));
} }
SpotPicker::~SpotPicker()
{
}
Gtk::Label SpotPicker::labelSetup(Glib::ustring const &key) const Gtk::Label SpotPicker::labelSetup(Glib::ustring const &key) const
{ {

View File

@@ -728,7 +728,6 @@ class SpotPicker : public Gtk::Grid
Gtk::ToggleButton _spotButton; Gtk::ToggleButton _spotButton;
public: public:
SpotPicker(int const defaultValue, Glib::ustring const &buttonKey, Glib::ustring const &buttonTooltip, Glib::ustring const &labelKey); SpotPicker(int const defaultValue, Glib::ustring const &buttonKey, Glib::ustring const &buttonTooltip, Glib::ustring const &labelKey);
~SpotPicker();
inline bool get_active() inline bool get_active()
{ {
return _spotButton.get_active(); return _spotButton.get_active();