Skip to content
Snippets Groups Projects
Commit 966c9907 authored by akiraohgaki's avatar akiraohgaki
Browse files

Rename signals

parent 2a744d38
No related branches found
No related tags found
No related merge requests found
...@@ -38,7 +38,7 @@ void XdgUrl::process() ...@@ -38,7 +38,7 @@ void XdgUrl::process()
QJsonObject result; QJsonObject result;
result["status"] = QString("error_validation"); result["status"] = QString("error_validation");
result["message"] = QString("Invalid XDG-URL " + xdgUrl_); result["message"] = QString("Invalid XDG-URL " + xdgUrl_);
emit error(result); emit finishedWithError(result);
return; return;
} }
...@@ -81,7 +81,7 @@ void XdgUrl::networkResourceFinished(qtlibs::NetworkResource *resource) ...@@ -81,7 +81,7 @@ void XdgUrl::networkResourceFinished(qtlibs::NetworkResource *resource)
QJsonObject result; QJsonObject result;
result["status"] = QString("error_network"); result["status"] = QString("error_network");
result["message"] = resource->reply()->errorString(); result["message"] = resource->reply()->errorString();
emit error(result); emit finishedWithError(result);
return; return;
} }
...@@ -177,7 +177,7 @@ void XdgUrl::saveDownloadedFile(qtlibs::NetworkResource *resource) ...@@ -177,7 +177,7 @@ void XdgUrl::saveDownloadedFile(qtlibs::NetworkResource *resource)
if (!resource->saveData(path)) { if (!resource->saveData(path)) {
result["status"] = QString("error_save"); result["status"] = QString("error_save");
result["message"] = QString("Failed to save data as " + path); result["message"] = QString("Failed to save data as " + path);
emit error(result); emit finishedWithError(result);
return; return;
} }
...@@ -185,7 +185,7 @@ void XdgUrl::saveDownloadedFile(qtlibs::NetworkResource *resource) ...@@ -185,7 +185,7 @@ void XdgUrl::saveDownloadedFile(qtlibs::NetworkResource *resource)
result["status"] = QString("success_download"); result["status"] = QString("success_download");
result["message"] = QString("The file has been stored into " + destination); result["message"] = QString("The file has been stored into " + destination);
emit finished(result); emit finishedWithSuccess(result);
} }
void XdgUrl::installDownloadedFile(qtlibs::NetworkResource *resource) void XdgUrl::installDownloadedFile(qtlibs::NetworkResource *resource)
...@@ -197,7 +197,7 @@ void XdgUrl::installDownloadedFile(qtlibs::NetworkResource *resource) ...@@ -197,7 +197,7 @@ void XdgUrl::installDownloadedFile(qtlibs::NetworkResource *resource)
if (!resource->saveData(tempPath)) { if (!resource->saveData(tempPath)) {
result["status"] = QString("error_save"); result["status"] = QString("error_save");
result["message"] = QString("Failed to save data as " + tempPath); result["message"] = QString("Failed to save data as " + tempPath);
emit error(result); emit finishedWithError(result);
return; return;
} }
...@@ -249,7 +249,7 @@ void XdgUrl::installDownloadedFile(qtlibs::NetworkResource *resource) ...@@ -249,7 +249,7 @@ void XdgUrl::installDownloadedFile(qtlibs::NetworkResource *resource)
tempFile.remove(); tempFile.remove();
result["status"] = QString("error_install"); result["status"] = QString("error_install");
result["message"] = QString("Failed to installation"); result["message"] = QString("Failed to installation");
emit error(result); emit finishedWithError(result);
return; return;
} }
...@@ -258,7 +258,7 @@ void XdgUrl::installDownloadedFile(qtlibs::NetworkResource *resource) ...@@ -258,7 +258,7 @@ void XdgUrl::installDownloadedFile(qtlibs::NetworkResource *resource)
destination_ = destination; destination_ = destination;
result["status"] = QString("success_install"); result["status"] = QString("success_install");
emit finished(result); emit finishedWithSuccess(result);
} }
} // namespace handlers } // namespace handlers
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment