summaryrefslogtreecommitdiffstats
path: root/src/main.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-01-08 19:11:13 +0000
committerDavid Robillard <d@drobilla.net>2011-01-08 19:11:13 +0000
commit9a1cd7003886f89e2228d74d61130dc5d24c06a3 (patch)
tree133972adfb7802750f62d9db69639cd2c18459ba /src/main.cpp
parentc92301fc4cd5620fe8193e2e6648ea86c580784d (diff)
downloadpatchage-9a1cd7003886f89e2228d74d61130dc5d24c06a3.tar.gz
patchage-9a1cd7003886f89e2228d74d61130dc5d24c06a3.tar.bz2
patchage-9a1cd7003886f89e2228d74d61130dc5d24c06a3.zip
Support via waf for running from the build directory.
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@2799 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 2087e2a..7c90ea5 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -36,13 +36,10 @@ main(int argc, char** argv)
app.run(*patchage.window());
} catch (std::exception& e) {
- Raul::error << "Caught exception, aborting. Error message was: "
- << e.what() << std::endl;
+ Raul::error << "patchage: error: " << e.what() << std::endl;
return 1;
-
} catch (Glib::Exception& e) {
- Raul::error << "Caught exception, aborting. Error message was: "
- << e.what() << std::endl;
+ Raul::error << "patchage: error: " << e.what() << std::endl;
return 1;
}