From af22f4195d67395cc3ba6a130e905629224e4380 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C3=A1niel=20Batty=C3=A1nyi?= <86350313+LoKolbasz@users.noreply.github.com> Date: Sun, 20 Aug 2023 13:29:49 +0200 Subject: [PATCH] Removed empty destructor --- rtgui/guiutils.cc | 3 --- rtgui/guiutils.h | 1 - 2 files changed, 4 deletions(-) diff --git a/rtgui/guiutils.cc b/rtgui/guiutils.cc index 047536f3e..7e36441fb 100644 --- a/rtgui/guiutils.cc +++ b/rtgui/guiutils.cc @@ -1981,9 +1981,6 @@ SpotPicker::SpotPicker(int const defaultValue, Glib::ustring const &buttonKey, G this->attach (_spotSizeSetter, 2, 0, 1, 1); _spotSizeSetter.signal_changed().connect( sigc::mem_fun(*this, &SpotPicker::spotSizeChanged)); } -SpotPicker::~SpotPicker() -{ -} Gtk::Label SpotPicker::labelSetup(Glib::ustring const &key) const { diff --git a/rtgui/guiutils.h b/rtgui/guiutils.h index 2a7e7d089..9683899f0 100644 --- a/rtgui/guiutils.h +++ b/rtgui/guiutils.h @@ -728,7 +728,6 @@ class SpotPicker : public Gtk::Grid Gtk::ToggleButton _spotButton; public: SpotPicker(int const defaultValue, Glib::ustring const &buttonKey, Glib::ustring const &buttonTooltip, Glib::ustring const &labelKey); - ~SpotPicker(); inline bool get_active() { return _spotButton.get_active();