From e04d563eb4086c776aeea9f681a8aa72e52c8764 Mon Sep 17 00:00:00 2001 From: selsta Date: Tue, 16 Jul 2019 03:34:46 +0200 Subject: src: fix compiler warnings --- src/qt/ipc.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/qt/ipc.cpp') diff --git a/src/qt/ipc.cpp b/src/qt/ipc.cpp index 0753470e..ae6b061d 100644 --- a/src/qt/ipc.cpp +++ b/src/qt/ipc.cpp @@ -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(){ -- cgit v1.2.3