summaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-12-17 20:23:15 +0300
committerAndrei Karas <akaras@inbox.ru>2017-12-17 20:23:15 +0300
commite947dec253ffa3cf21d59b78581de55b44cbc157 (patch)
tree37258ccbae91b46842e831864e2b1be99246e509 /src/utils
parenta1bfd4d5dfafde544d9a067e429939a4505ed020 (diff)
downloadplus-e947dec253ffa3cf21d59b78581de55b44cbc157.tar.gz
plus-e947dec253ffa3cf21d59b78581de55b44cbc157.tar.bz2
plus-e947dec253ffa3cf21d59b78581de55b44cbc157.tar.xz
plus-e947dec253ffa3cf21d59b78581de55b44cbc157.zip
Remove default parameters from process.cpp
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/process.h14
1 files changed, 9 insertions, 5 deletions
diff --git a/src/utils/process.h b/src/utils/process.h
index bf622c15b..cbb0f73b7 100644
--- a/src/utils/process.h
+++ b/src/utils/process.h
@@ -23,12 +23,16 @@
#include <string>
-int execFileWait(const std::string &pathName, const std::string &name,
- const std::string &arg1, const std::string &arg2,
- int waitTime = 0);
+int execFileWait(const std::string &pathName,
+ const std::string &name,
+ const std::string &arg1,
+ const std::string &arg2,
+ int waitTime);
-bool execFile(const std::string &pathName, const std::string &name,
- const std::string &arg1, const std::string &arg2);
+bool execFile(const std::string &pathName,
+ const std::string &name,
+ const std::string &arg1,
+ const std::string &arg2);
bool openBrowser(std::string url);