summaryrefslogtreecommitdiffstats
path: root/src/PatchageCanvas.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/PatchageCanvas.cpp')
-rw-r--r--src/PatchageCanvas.cpp19
1 files changed, 11 insertions, 8 deletions
diff --git a/src/PatchageCanvas.cpp b/src/PatchageCanvas.cpp
index f3ffca0..c172a12 100644
--- a/src/PatchageCanvas.cpp
+++ b/src/PatchageCanvas.cpp
@@ -15,21 +15,24 @@
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
-#include "raul/SharedPtr.hpp"
#include "patchage-config.h"
-#include "PatchageCanvas.hpp"
-#include "Patchage.hpp"
+
+#include "raul/SharedPtr.hpp"
+
#if defined(HAVE_JACK_DBUS)
-#include "JackDbusDriver.hpp"
+ #include "JackDbusDriver.hpp"
#elif defined(USE_LIBJACK)
-#include "JackDriver.hpp"
+ #include "JackDriver.hpp"
#endif
-#include "PatchageModule.hpp"
-#include "PatchagePort.hpp"
#ifdef HAVE_ALSA
-#include "AlsaDriver.hpp"
+ #include "AlsaDriver.hpp"
#endif
+#include "Patchage.hpp"
+#include "PatchageCanvas.hpp"
+#include "PatchageModule.hpp"
+#include "PatchagePort.hpp"
+
PatchageCanvas::PatchageCanvas(Patchage* app, int width, int height)
: FlowCanvas::Canvas(width, height)
, _app(app)