summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-12-09 02:34:41 +0000
committerDavid Robillard <d@drobilla.net>2009-12-09 02:34:41 +0000
commitecaf137284ec8a268eeba963b69a44a5a25db6f8 (patch)
tree7ad56ec8a373bf40bb96f0023c1bb45bf71ef1e8 /src
parent21a978e809fc384c268d4478c0dbd1f325cf8c1f (diff)
downloadpatchage-ecaf137284ec8a268eeba963b69a44a5a25db6f8.tar.gz
patchage-ecaf137284ec8a268eeba963b69a44a5a25db6f8.tar.bz2
patchage-ecaf137284ec8a268eeba963b69a44a5a25db6f8.zip
Patchage 0.4.3.
Update ChangeLog. Fix warning when building with --jack-dbus. git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@2305 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src')
-rw-r--r--src/PatchageCanvas.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/PatchageCanvas.cpp b/src/PatchageCanvas.cpp
index 4c487ba..5d3bf58 100644
--- a/src/PatchageCanvas.cpp
+++ b/src/PatchageCanvas.cpp
@@ -32,7 +32,7 @@
PatchageCanvas::PatchageCanvas(Patchage* app, int width, int height)
: FlowCanvas::Canvas(width, height)
- , _app(app)
+ , _app(app)
{
}
@@ -70,7 +70,7 @@ PatchageCanvas::find_port(const PortID& id)
string module_name;
string port_name;
-#if defined(USE_LIBJACK) || defined(HAVE_JACK_DBUS)
+#if defined(USE_LIBJACK)
jack_port_t* jack_port = NULL;
#endif