diff options
author | Alexander Tkachev | 2016-05-18 15:31:22 +0600 |
---|---|---|
committer | Alexander Tkachev | 2016-08-24 16:07:55 +0600 |
commit | f913675c43ada5c5f9128d904fd913129da35fe8 (patch) | |
tree | f3909d8187c56e08d946de9f71afa19c3391492a | |
parent | 0a947618fb1faa023df03d355e9749905424dd58 (diff) | |
download | scummvm-rg350-f913675c43ada5c5f9128d904fd913129da35fe8.tar.gz scummvm-rg350-f913675c43ada5c5f9128d904fd913129da35fe8.tar.bz2 scummvm-rg350-f913675c43ada5c5f9128d904fd913129da35fe8.zip |
CLOUD: Add ConnectionManager hotfix
Tried to compile these two last commits with GCC and found a few minor
problems.
-rw-r--r-- | backends/cloud/dropbox/dropboxstorage.h | 2 | ||||
-rw-r--r-- | backends/module.mk | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/backends/cloud/dropbox/dropboxstorage.h b/backends/cloud/dropbox/dropboxstorage.h index 0500db5d49..afa9447566 100644 --- a/backends/cloud/dropbox/dropboxstorage.h +++ b/backends/cloud/dropbox/dropboxstorage.h @@ -54,7 +54,7 @@ public: /** * Returns Dropbox auth link. */ - static Common::String DropboxStorage::getAuthLink(); + static Common::String getAuthLink(); /** * Show message with Dropbox auth instructions. (Temporary) diff --git a/backends/module.mk b/backends/module.mk index 0142531835..035eac2623 100644 --- a/backends/module.mk +++ b/backends/module.mk @@ -21,7 +21,7 @@ MODULE_OBJS := \ ifdef USE_CLOUD MODULE_OBJS += \ - cloud/manager.o \ + cloud/manager.o \ cloud/dropbox/dropboxstorage.o endif |