summaryrefslogtreecommitdiff
path: root/gtk2_ardour/video_timeline.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2019-03-05 19:06:29 +0100
committerRobin Gareus <robin@gareus.org>2019-03-05 22:49:18 +0100
commita390d8d3ca9f6e080b790a4d40f1687b498b1ed3 (patch)
tree1716c0009e0326c7f58f314d6e04db391f5c972f /gtk2_ardour/video_timeline.cc
parente1ffe7857ffdd6d29a8548267571e76e569c1fe9 (diff)
Use enum for exec stderr parameter (2/2)
Diffstat (limited to 'gtk2_ardour/video_timeline.cc')
-rw-r--r--gtk2_ardour/video_timeline.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/video_timeline.cc b/gtk2_ardour/video_timeline.cc
index d8bec5e23b..0626a4b9a1 100644
--- a/gtk2_ardour/video_timeline.cc
+++ b/gtk2_ardour/video_timeline.cc
@@ -726,7 +726,7 @@ VideoTimeLine::find_xjadeo () {
xjadeo_version = "";
version_check.ReadStdout.connect_same_thread (*this, boost::bind (&VideoTimeLine::xjadeo_readversion, this, _1 ,_2));
version_check.Terminated.connect_same_thread (*this, boost::bind (&VideoTimeLine::xjadeo_readversion, this, "\n" ,1));
- if (version_check.start(2)) {
+ if (version_check.start (ARDOUR::SystemExec::MergeWithStdin)) {
warning << _(
"Video-monitor 'xjadeo' cannot be launched."
) << endmsg;
@@ -795,7 +795,7 @@ VideoTimeLine::find_harvid () {
harvid_version = "";
version_check.ReadStdout.connect_same_thread (*this, boost::bind (&VideoTimeLine::harvid_readversion, this, _1 ,_2));
version_check.Terminated.connect_same_thread (*this, boost::bind (&VideoTimeLine::harvid_readversion, this, "\n" ,1));
- if (version_check.start(2)) {
+ if (version_check.start (ARDOUR::SystemExec::MergeWithStdin)) {
return;
}