summaryrefslogtreecommitdiff
path: root/zen/shell_execute.h
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2019-09-17 08:06:14 -0400
committerB Stack <bgstack15@gmail.com>2019-09-17 08:06:14 -0400
commitca250bf14979d359a82d5baf11ae9587d5605594 (patch)
treefc3041d022fee1abfc6df2ffd903fd7662b0b0d9 /zen/shell_execute.h
parentadd upstream 10.15 (diff)
downloadFreeFileSync-ca250bf14979d359a82d5baf11ae9587d5605594.tar.gz
FreeFileSync-ca250bf14979d359a82d5baf11ae9587d5605594.tar.bz2
FreeFileSync-ca250bf14979d359a82d5baf11ae9587d5605594.zip
add upstream 10.16
Diffstat (limited to 'zen/shell_execute.h')
-rw-r--r--zen/shell_execute.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/shell_execute.h b/zen/shell_execute.h
index 4875a039..56322236 100644
--- a/zen/shell_execute.h
+++ b/zen/shell_execute.h
@@ -72,7 +72,7 @@ void shellExecute(const Zstring& command, ExecutionType type, bool hideConsole)
inline
void openWithDefaultApplication(const Zstring& itemPath) //throw FileError
{
- shellExecute("xdg-open \"" + itemPath + '"', ExecutionType::ASYNC, false/*hideConsole*/); //
+ shellExecute("xdg-open \"" + itemPath + '"', ExecutionType::ASYNC, false /*hideConsole*/); //throw FileError
}
}
bgstack15