NO-OP: whitespace and some guaranteed assertion removal

This commit is contained in:
Robin Gareus 2018-12-08 20:17:01 +01:00
parent 41827a546a
commit 474d68c051
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
2 changed files with 11 additions and 10 deletions

View file

@ -232,7 +232,7 @@ CheckOption::action_toggled ()
{
Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (_action);
if (tact) {
_button->set_active(tact->get_active());
_button->set_active (tact->get_active());
}
}
@ -247,7 +247,7 @@ CheckOption::toggled ()
{
Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (_action);
tact->set_active( _button->get_active() );
tact->set_active (_button->get_active ());
}