aboutsummaryrefslogtreecommitdiff
path: root/backends/cloud/dropbox/dropboxlistdirectoryrequest.h
diff options
context:
space:
mode:
authorAlexander Tkachev2016-05-26 19:09:06 +0600
committerAlexander Tkachev2016-08-24 16:07:55 +0600
commita7b28605a01b59de6f3acc9df4cd1cac707c39e7 (patch)
treec19b7bf5a72eccf8d01da549c1f3251d097107c1 /backends/cloud/dropbox/dropboxlistdirectoryrequest.h
parentf4547f44df32ce1f49a6a36df083e7703751adcd (diff)
downloadscummvm-rg350-a7b28605a01b59de6f3acc9df4cd1cac707c39e7.tar.gz
scummvm-rg350-a7b28605a01b59de6f3acc9df4cd1cac707c39e7.tar.bz2
scummvm-rg350-a7b28605a01b59de6f3acc9df4cd1cac707c39e7.zip
CLOUD: Change Request::handle()
With new ConnectionManager upgrade Requests indicate that they are finished with RequestInfo.state. No need to use handle() return value anymore.
Diffstat (limited to 'backends/cloud/dropbox/dropboxlistdirectoryrequest.h')
-rw-r--r--backends/cloud/dropbox/dropboxlistdirectoryrequest.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/cloud/dropbox/dropboxlistdirectoryrequest.h b/backends/cloud/dropbox/dropboxlistdirectoryrequest.h
index 58f3dc6113..afa544de69 100644
--- a/backends/cloud/dropbox/dropboxlistdirectoryrequest.h
+++ b/backends/cloud/dropbox/dropboxlistdirectoryrequest.h
@@ -47,7 +47,7 @@ public:
DropboxListDirectoryRequest(Common::String token, Common::String path, Storage::FileArrayCallback cb, bool recursive = false);
virtual ~DropboxListDirectoryRequest() { delete _filesCallback; }
- virtual bool handle();
+ virtual void handle();
virtual void restart();
};