OSC: aux bus detection fixed for mixbus
[ardour.git] / libs / surfaces / osc / osc_controllable.h
index 67b828446001d09238cdbda47dbfba96e69a9f6b..accec0451509a2988461bed5f7f31bba5015ed14 100644 (file)
@@ -1,6 +1,6 @@
 /*
     Copyright (C) 2009 Paul Davis
+
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
     the Free Software Foundation; either version 2 of the License, or
@@ -30,9 +30,7 @@
 #include "ardour/types.h"
 
 namespace ARDOUR {
-
-class Route;
-
+       class Route;
 }
 
 class OSCControllable : public PBD::Stateful
@@ -52,15 +50,15 @@ class OSCControllable : public PBD::Stateful
        lo_address addr;
        std::string path;
 
-       virtual void send_change ();
+       virtual void send_change_message ();
 };
 
 class OSCRouteControllable : public OSCControllable
 {
 
   public:
-       OSCRouteControllable (lo_address addr, const std::string& path, 
-                             boost::shared_ptr<PBD::Controllable>, 
+       OSCRouteControllable (lo_address addr, const std::string& path,
+                             boost::shared_ptr<PBD::Controllable>,
                              boost::shared_ptr<ARDOUR::Route>);
        ~OSCRouteControllable ();
 
@@ -69,7 +67,7 @@ class OSCRouteControllable : public OSCControllable
   private:
        boost::shared_ptr<ARDOUR::Route> _route;
 
-       void send_change ();
+       void send_change_message ();
 };
 
 #endif /* __osc_osccontrollable_h__ */