Merge pull request #2283

e04d563 src: fix compiler warnings (selsta)
This commit is contained in:
luigi1111
2019-07-16 11:36:26 -05:00
2 changed files with 3 additions and 3 deletions

View File

@@ -99,8 +99,8 @@ bool IPC::saveCommand(QString cmdString){
return true;
}
bool IPC::saveCommand(const QUrl &url){;
this->saveCommand(url.toString());
bool IPC::saveCommand(const QUrl &url){
return this->saveCommand(url.toString());
}
void IPC::handleConnection(){