summaryrefslogtreecommitdiff
path: root/gtk2_ardour/option_editor.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2018-12-08 20:17:01 +0100
committerRobin Gareus <robin@gareus.org>2018-12-08 20:36:03 +0100
commit474d68c05132291fd8eb200006e7e63aebefdc8d (patch)
tree0a309418297f6cad202df4dbbae20486b5b9e2bd /gtk2_ardour/option_editor.cc
parent41827a546a3fd8c8fb4095845f6b80f1f36ce048 (diff)
NO-OP: whitespace and some guaranteed assertion removal
Diffstat (limited to 'gtk2_ardour/option_editor.cc')
-rw-r--r--gtk2_ardour/option_editor.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/option_editor.cc b/gtk2_ardour/option_editor.cc
index 4d51bbce10..875e611452 100644
--- a/gtk2_ardour/option_editor.cc
+++ b/gtk2_ardour/option_editor.cc
@@ -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 ());
}