Remove some Windows icons which I'm told we don't need any more...
[ardour.git] / gtk2_ardour / ardour_display.cc
index 8a0c2fed743459ed30c72aeea361399a0746fcba..17f3dc5dde171b101aedc71ae37108ac4a423dd0 100644 (file)
@@ -24,6 +24,7 @@
 #include <pangomm/layout.h>
 
 #include "pbd/compose.h"
+#include "pbd/controllable.h"
 #include "pbd/error.h"
 #include "pbd/stacktrace.h"
 
@@ -35,7 +36,6 @@
 #include "ardour/rc_configuration.h" // for widget prelight preference
 
 #include "ardour_display.h"
-#include "ardour_ui.h"
 
 #include "i18n.h"
 
@@ -63,7 +63,7 @@ ArdourDisplay::~ArdourDisplay ()
 bool
 ArdourDisplay::on_button_press_event (GdkEventButton*)
 {
-       _menu.popup (1, gtk_get_current_event_time());  
+       _menu.popup (1, gtk_get_current_event_time());
        return true;
 }
 
@@ -84,12 +84,12 @@ ArdourDisplay::on_scroll_event (GdkEventScroll* ev)
        boost::shared_ptr<PBD::Controllable> c = binding_proxy.get_controllable();
        if (c) {
                float val = c->get_interface();
-       
+
                if ( ev->direction == GDK_SCROLL_UP )
                        val += 0.05 * scale;  //by default, we step in 1/20ths of the knob travel
                else
                        val -= 0.05 * scale;
-                       
+
                c->set_interface(val);
        }