#6151 Improve --server and --client arg suppress comment

This commit is contained in:
Nick Bolton 2017-09-14 14:57:44 +01:00
parent c47b4bd492
commit d2f5ba6599
1 changed files with 2 additions and 2 deletions

View File

@ -263,10 +263,10 @@ ArgParser::parseGenericArgs(int argc, const char* const* argv, int& i)
argsBase().m_enableIpc = true;
}
else if (isArg(i, argc, argv, NULL, "--server")) {
// HACK: stop error happening when using portable (synergyp)
// supress error when --server is used
}
else if (isArg(i, argc, argv, NULL, "--client")) {
// HACK: stop error happening when using portable (synergyp)
// supress error when --client is used
}
else if (isArg(i, argc, argv, NULL, "--enable-drag-drop")) {
bool useDragDrop = true;