diff options
Diffstat (limited to 'src/utils')
-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); |