diff options
author | David Robillard <d@drobilla.net> | 2008-09-27 17:26:45 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-09-27 17:26:45 +0000 |
commit | f15c3d9398e800f83a66231f4d9c52e076da6711 (patch) | |
tree | 87f9aedc5e03ce69b2cb34ab2fb71a0285f746ef | |
parent | 122881b22a8a59bb2b6cc76af414804150a0010d (diff) | |
download | patchage-f15c3d9398e800f83a66231f4d9c52e076da6711.tar.gz patchage-f15c3d9398e800f83a66231f4d9c52e076da6711.tar.bz2 patchage-f15c3d9398e800f83a66231f4d9c52e076da6711.zip |
Fix compilation with Jack Dbus.
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@1517 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | src/JackDbusDriver.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/JackDbusDriver.cpp b/src/JackDbusDriver.cpp index 1f96647..72d97dc 100644 --- a/src/JackDbusDriver.cpp +++ b/src/JackDbusDriver.cpp @@ -1147,7 +1147,7 @@ void JackDriver::error_msg(const std::string& msg) const { #if defined(LOG_TO_STATUS) - _app->status_message((std::string)"[JACKDBUS] " + msg); + _app->status_msg((std::string)"[JACKDBUS] " + msg); #endif #if defined(LOG_TO_STD) @@ -1160,7 +1160,7 @@ void JackDriver::info_msg(const std::string& msg) const { #if defined(LOG_TO_STATUS) - _app->status_message((std::string)"[JACKDBUS] " + msg); + _app->status_msg((std::string)"[JACKDBUS] " + msg); #endif #if defined(LOG_TO_STD) |