diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-12-17 20:23:15 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-17 20:23:15 +0300 |
commit | e947dec253ffa3cf21d59b78581de55b44cbc157 (patch) | |
tree | 37258ccbae91b46842e831864e2b1be99246e509 /src/utils/process.h | |
parent | a1bfd4d5dfafde544d9a067e429939a4505ed020 (diff) | |
download | plus-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/process.h')
-rw-r--r-- | src/utils/process.h | 14 |
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); |