Skip to content
Snippets Groups Projects
Commit 1a57f218 authored by akiraohgaki's avatar akiraohgaki
Browse files

Fix signal arguments

parent 1d323dd7
No related branches found
No related tags found
Loading
...@@ -20,9 +20,9 @@ public: ...@@ -20,9 +20,9 @@ public:
signals: signals:
void started(); void started();
void finishedWithSuccess(const QJsonObject &result); void finishedWithSuccess(QJsonObject result);
void finishedWithError(const QJsonObject &result); void finishedWithError(QJsonObject result);
void downloadProgress(const qint64 &bytesReceived, const qint64 &bytesTotal); void downloadProgress(qint64 bytesReceived, qint64 bytesTotal);
public slots: public slots:
QString xdgUrl() const; QString xdgUrl() const;
......
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