diff options
author | Eugene Sandulenko | 2016-07-29 05:34:35 +0300 |
---|---|---|
committer | Alexander Tkachev | 2016-08-24 16:07:55 +0600 |
commit | 0558ba423cb9cdd5f9cd29a1c47a0530399b2399 (patch) | |
tree | 60c4c3662635fb87a88b60a294db49982167dbb5 /backends/cloud | |
parent | 64b361b33545d2ffc1620a7bf4eb248afc9797f4 (diff) | |
download | scummvm-rg350-0558ba423cb9cdd5f9cd29a1c47a0530399b2399.tar.gz scummvm-rg350-0558ba423cb9cdd5f9cd29a1c47a0530399b2399.tar.bz2 scummvm-rg350-0558ba423cb9cdd5f9cd29a1c47a0530399b2399.zip |
CLOUD: Fix warnings
Diffstat (limited to 'backends/cloud')
-rw-r--r-- | backends/cloud/storagefile.h | 2 | ||||
-rw-r--r-- | backends/cloud/storageinfo.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/backends/cloud/storagefile.h b/backends/cloud/storagefile.h index 1324cafc93..1183524f48 100644 --- a/backends/cloud/storagefile.h +++ b/backends/cloud/storagefile.h @@ -57,7 +57,7 @@ public: uint32 timestamp() const { return _timestamp; } bool isDirectory() const { return _isDirectory; } - void setPath(Common::String path) { _path = path; } + void setPath(Common::String path_) { _path = path_; } }; } // End of namespace Cloud diff --git a/backends/cloud/storageinfo.h b/backends/cloud/storageinfo.h index 469f0402c0..f1fb540974 100644 --- a/backends/cloud/storageinfo.h +++ b/backends/cloud/storageinfo.h @@ -37,8 +37,8 @@ class StorageInfo { uint64 _usedBytes, _allocatedBytes; public: - StorageInfo(Common::String uid, Common::String name, Common::String email, uint64 used, uint64 allocated): - _uid(uid), _name(name), _email(email), _usedBytes(used), _allocatedBytes(allocated) {} + StorageInfo(Common::String uid_, Common::String name_, Common::String email_, uint64 used_, uint64 allocated): + _uid(uid_), _name(name_), _email(email_), _usedBytes(used_), _allocatedBytes(allocated) {} Common::String uid() const { return _uid; } Common::String name() const { return _name; } |