fixed warnings in rtgui/checkbox
This commit is contained in:
@@ -27,7 +27,6 @@ CheckBox::CheckBox (Glib::ustring label, bool const& multiImageVal)
|
|||||||
: Gtk::CheckButton (label)
|
: Gtk::CheckButton (label)
|
||||||
, listener (nullptr)
|
, listener (nullptr)
|
||||||
, lastActive (false)
|
, lastActive (false)
|
||||||
, inBatchMode (false)
|
|
||||||
, multiImage (multiImageVal)
|
, multiImage (multiImageVal)
|
||||||
{
|
{
|
||||||
conn = signal_toggled().connect( sigc::mem_fun(*this, &CheckBox::buttonToggled) );
|
conn = signal_toggled().connect( sigc::mem_fun(*this, &CheckBox::buttonToggled) );
|
||||||
|
@@ -48,7 +48,6 @@ class CheckBox : public Gtk::CheckButton // Should ideally be private, but in t
|
|||||||
|
|
||||||
CheckBoxListener *listener;
|
CheckBoxListener *listener;
|
||||||
bool lastActive;
|
bool lastActive;
|
||||||
bool inBatchMode;
|
|
||||||
bool const& multiImage;
|
bool const& multiImage;
|
||||||
sigc::connection conn;
|
sigc::connection conn;
|
||||||
void buttonToggled ();
|
void buttonToggled ();
|
||||||
|
Reference in New Issue
Block a user