summaryrefslogtreecommitdiff
path: root/libs/widgets
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2019-04-13 19:19:29 +0200
committerRobin Gareus <robin@gareus.org>2019-04-13 19:19:29 +0200
commit2f91bdfa5390bdf992ab7044488b5afb21716661 (patch)
tree3418e802cdbb431cc10c65eb5dfcbbc6925d5984 /libs/widgets
parent31815b5f268fa0233cd25b7ff2c8a246c12c20d1 (diff)
NO-OP: <tab> after <space> fixes in libs
Diffstat (limited to 'libs/widgets')
-rw-r--r--libs/widgets/ardour_dropdown.cc1
-rw-r--r--libs/widgets/widgets/ardour_knob.h2
-rw-r--r--libs/widgets/widgets/ardour_spacer.h2
-rw-r--r--libs/widgets/widgets/binding_proxy.h2
4 files changed, 3 insertions, 4 deletions
diff --git a/libs/widgets/ardour_dropdown.cc b/libs/widgets/ardour_dropdown.cc
index e54213df0e..fe69d279a8 100644
--- a/libs/widgets/ardour_dropdown.cc
+++ b/libs/widgets/ardour_dropdown.cc
@@ -49,7 +49,6 @@ using namespace std;
ArdourDropdown::ArdourDropdown (Element e)
: _scrolling_disabled(false)
{
-// signal_button_press_event().connect (sigc::mem_fun(*this, &ArdourDropdown::on_mouse_pressed));
_menu.signal_size_request().connect (sigc::mem_fun(*this, &ArdourDropdown::menu_size_request));
_menu.set_reserve_toggle_size(false);
diff --git a/libs/widgets/widgets/ardour_knob.h b/libs/widgets/widgets/ardour_knob.h
index b424e13a8a..67a2741e9f 100644
--- a/libs/widgets/widgets/ardour_knob.h
+++ b/libs/widgets/widgets/ardour_knob.h
@@ -82,7 +82,7 @@ public:
void set_tooltip_prefix (std::string pfx) { _tooltip_prefix = pfx; controllable_changed (true); }
boost::shared_ptr<PBD::Controllable> get_controllable() { return binding_proxy.get_controllable(); }
- void set_controllable (boost::shared_ptr<PBD::Controllable> c);
+ void set_controllable (boost::shared_ptr<PBD::Controllable> c);
bool on_button_press_event (GdkEventButton*);
bool on_button_release_event (GdkEventButton*);
diff --git a/libs/widgets/widgets/ardour_spacer.h b/libs/widgets/widgets/ardour_spacer.h
index d7c915a007..538bec2320 100644
--- a/libs/widgets/widgets/ardour_spacer.h
+++ b/libs/widgets/widgets/ardour_spacer.h
@@ -86,7 +86,7 @@ protected:
ctx->set_source (_gradient);
ctx->rectangle (0, 0, 4, height);
ctx->fill ();
- }
+ }
}
float alpha;
diff --git a/libs/widgets/widgets/binding_proxy.h b/libs/widgets/widgets/binding_proxy.h
index 4d5051382d..2a8fad9643 100644
--- a/libs/widgets/widgets/binding_proxy.h
+++ b/libs/widgets/widgets/binding_proxy.h
@@ -49,7 +49,7 @@ public:
bool button_press_handler (GdkEventButton *);
boost::shared_ptr<PBD::Controllable> get_controllable() const { return controllable; }
- void set_controllable (boost::shared_ptr<PBD::Controllable>);
+ void set_controllable (boost::shared_ptr<PBD::Controllable>);
protected:
ArdourWidgets::PopUp* prompter;