aboutsummaryrefslogtreecommitdiff
path: root/backends/cloud/storagefile.cpp
diff options
context:
space:
mode:
authorD G Turner2017-01-10 05:15:56 +0000
committerD G Turner2017-01-10 05:15:56 +0000
commit32809534fd215ae224a1e05bdf82cd094ea5681b (patch)
tree54b8c126cb6b40d2140a2c8b66d69016b6eecc89 /backends/cloud/storagefile.cpp
parentace486cef4a25dda754fb9a666d6cea3c246fa47 (diff)
downloadscummvm-rg350-32809534fd215ae224a1e05bdf82cd094ea5681b.tar.gz
scummvm-rg350-32809534fd215ae224a1e05bdf82cd094ea5681b.tar.bz2
scummvm-rg350-32809534fd215ae224a1e05bdf82cd094ea5681b.zip
CLOUD: Fix Remaining Shadowing Compiler Warnings.
Diffstat (limited to 'backends/cloud/storagefile.cpp')
-rw-r--r--backends/cloud/storagefile.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/backends/cloud/storagefile.cpp b/backends/cloud/storagefile.cpp
index 2428d8ff80..90ec7da120 100644
--- a/backends/cloud/storagefile.cpp
+++ b/backends/cloud/storagefile.cpp
@@ -56,10 +56,10 @@ StorageFile::StorageFile(Common::String pth, uint32 sz, uint32 ts, bool dir) {
_isDirectory = dir;
}
-StorageFile::StorageFile(Common::String id, Common::String path, Common::String name, uint32 sz, uint32 ts, bool dir) {
- _id = id;
- _path = path;
- _name = name;
+StorageFile::StorageFile(Common::String fileId, Common::String filePath, Common::String fileName, uint32 sz, uint32 ts, bool dir) {
+ _id = fileId;
+ _path = filePath;
+ _name = fileName;
_size = sz;
_timestamp = ts;
_isDirectory = dir;