aboutsummaryrefslogtreecommitdiff
path: root/backends/cloud
diff options
context:
space:
mode:
Diffstat (limited to 'backends/cloud')
-rw-r--r--backends/cloud/storagefile.h2
-rw-r--r--backends/cloud/storageinfo.h4
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; }