summaryrefslogtreecommitdiff
path: root/gtk2_ardour/video_tool_paths.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-07-15 19:03:56 +0200
committerRobin Gareus <robin@gareus.org>2015-07-15 19:03:56 +0200
commit3f25b7ec4f3584d8ee516b27676db88578fb8556 (patch)
treeb2895d773071eee9d652fb9a58430206a465ef1d /gtk2_ardour/video_tool_paths.cc
parent42bfc63d7a25cfdd8587a62f5fef75aae9d45a74 (diff)
Revert "add debug info for xjadeo binary"
This reverts commit 8af2d08f88c4a9b3faf14f6d46b2ad2cecdc8ada.
Diffstat (limited to 'gtk2_ardour/video_tool_paths.cc')
-rw-r--r--gtk2_ardour/video_tool_paths.cc7
1 files changed, 0 insertions, 7 deletions
diff --git a/gtk2_ardour/video_tool_paths.cc b/gtk2_ardour/video_tool_paths.cc
index eab6c5b399..6f3d56b48c 100644
--- a/gtk2_ardour/video_tool_paths.cc
+++ b/gtk2_ardour/video_tool_paths.cc
@@ -27,7 +27,6 @@
#endif
#include "pbd/file_utils.h"
-#include "pbd/error.h"
#include "video_tool_paths.h"
#include "i18n.h"
@@ -112,10 +111,8 @@ ArdourVideoToolPaths::xjadeo_exe (std::string &xjadeo_exe)
xjadeo_exe = getenv("XJREMOTE");
} else if (find_file (Searchpath(Glib::getenv("PATH")), X_("xjremote"), xjadeo_file_path)) {
xjadeo_exe = xjadeo_file_path;
- info << "xjadeo from XJREMOTE: " << xjadeo_exe << endmsg;
} else if (find_file (Searchpath(Glib::getenv("PATH")), X_("xjadeo"), xjadeo_file_path)) {
xjadeo_exe = xjadeo_file_path;
- info << "xjadeo from PATH: " << xjadeo_exe << endmsg;
}
#ifdef __APPLE__
else if (Glib::file_test(X_("/Applications/Xjadeo.app/Contents/MacOS/xjadeo"), Glib::FILE_TEST_EXISTS|Glib::FILE_TEST_IS_EXECUTABLE)) {
@@ -129,21 +126,17 @@ ArdourVideoToolPaths::xjadeo_exe (std::string &xjadeo_exe)
else if ( windows_install_dir("Software\\" PROGRAM_NAME "\\v" PROGRAM_VERSION "\\video", reg))
{
xjadeo_exe = std::string(g_build_filename(reg.c_str(), "xjadeo", "xjadeo.exe", NULL));
- info << "xjadeo.exe from reg: " << "Software\\" PROGRAM_NAME "\\v" PROGRAM_VERSION "\\video" << ": " << xjadeo_exe << endmsg;
}
else if ( windows_install_dir("Software\\RSS\\xjadeo", reg))
{
xjadeo_exe = std::string(g_build_filename(reg.c_str(), "xjadeo.exe", NULL));
- info << "xjadeo.exe from reg: Software\\RSS\\xjadeo: " << xjadeo_exe << endmsg;
}
else if (program_files && Glib::file_test(g_build_filename(program_files, "xjadeo", "xjadeo.exe", NULL), Glib::FILE_TEST_EXISTS))
{
xjadeo_exe = std::string(g_build_filename(program_files, "xjadeo", "xjadeo.exe", NULL));
- info << "xjadeo.exe from CSIDL_PROGRAM_FILES: " << xjadeo_exe << endmsg;
}
else if (Glib::file_test(X_("C:\\Program Files\\xjadeo\\xjadeo.exe"), Glib::FILE_TEST_EXISTS)) {
xjadeo_exe = X_("C:\\Program Files\\xjadeo\\xjadeo.exe");
- info << "xjadeo.exe from C:\\Program Files\\xjadeo\\ :" << xjadeo_exe << endmsg;
}
#endif
else {