/[svn]/gigedit/trunk/src/gigedit/paramedit.cpp
ViewVC logotype

Diff of /gigedit/trunk/src/gigedit/paramedit.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 3460 by persson, Sat Feb 2 07:48:50 2019 UTC revision 3461 by persson, Sat Feb 2 17:53:36 2019 UTC
# Line 151  LabelWidget::LabelWidget(const char* lab Line 151  LabelWidget::LabelWidget(const char* lab
151      label.set_halign(Gtk::Align::START);      label.set_halign(Gtk::Align::START);
152  #endif  #endif
153      Settings::singleton()->showTooltips.get_proxy().signal_changed().connect(      Settings::singleton()->showTooltips.get_proxy().signal_changed().connect(
154          sigc::mem_fun(this, &LabelWidget::on_show_tooltips_changed)          sigc::mem_fun(*this, &LabelWidget::on_show_tooltips_changed)
155      );      );
156    
157      // workaround for a crash with certain gtkmm versions: postpone calling      // workaround for a crash with certain gtkmm versions: postpone calling
# Line 542  void ChoiceEntryLeverageCtrl::set_value( Line 542  void ChoiceEntryLeverageCtrl::set_value(
542  BoolBox::BoolBox(const char* labelText) : Gtk::CheckButton(labelText) {  BoolBox::BoolBox(const char* labelText) : Gtk::CheckButton(labelText) {
543      signal_toggled().connect(sig_changed.make_slot());      signal_toggled().connect(sig_changed.make_slot());
544      Settings::singleton()->showTooltips.get_proxy().signal_changed().connect(      Settings::singleton()->showTooltips.get_proxy().signal_changed().connect(
545          sigc::mem_fun(this, &BoolBox::on_show_tooltips_changed)          sigc::mem_fun(*this, &BoolBox::on_show_tooltips_changed)
546      );      );
547      on_show_tooltips_changed();      on_show_tooltips_changed();
548  }  }

Legend:
Removed from v.3460  
changed lines
  Added in v.3461

  ViewVC Help
Powered by ViewVC