Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuri Gorshenin <y@maps.me>2015-07-27 13:25:24 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:57:40 +0300
commit04142e39cffd676d234f2a3b39de774500c6a66e (patch)
tree4cc8006430e0a9f2b31a472d6f338ad2dcb43174 /platform/platform_tests_support
parentacb80ad11be5e7431cf31fac57bbe104886e3ef6 (diff)
Removed T-letter from TMapOptions.
Diffstat (limited to 'platform/platform_tests_support')
-rw-r--r--platform/platform_tests_support/scoped_file.cpp2
-rw-r--r--platform/platform_tests_support/scoped_file.hpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/platform/platform_tests_support/scoped_file.cpp b/platform/platform_tests_support/scoped_file.cpp
index 420b972b4f..1f8a6e9340 100644
--- a/platform/platform_tests_support/scoped_file.cpp
+++ b/platform/platform_tests_support/scoped_file.cpp
@@ -27,7 +27,7 @@ ScopedFile::ScopedFile(string const & relativePath, string const & contents)
TEST(Exists(), ("Can't create test file", GetFullPath()));
}
-ScopedFile::ScopedFile(ScopedDir const & dir, CountryFile const & countryFile, TMapOptions file,
+ScopedFile::ScopedFile(ScopedDir const & dir, CountryFile const & countryFile, MapOptions file,
string const & contents)
: ScopedFile(my::JoinFoldersToPath(dir.GetRelativePath(), countryFile.GetNameWithExt(file)),
contents)
diff --git a/platform/platform_tests_support/scoped_file.hpp b/platform/platform_tests_support/scoped_file.hpp
index de5bb1d76a..f55e0722c9 100644
--- a/platform/platform_tests_support/scoped_file.hpp
+++ b/platform/platform_tests_support/scoped_file.hpp
@@ -20,7 +20,7 @@ class ScopedFile
public:
ScopedFile(string const & relativePath, string const & contents);
- ScopedFile(ScopedDir const & dir, CountryFile const & countryFile, TMapOptions file,
+ ScopedFile(ScopedDir const & dir, CountryFile const & countryFile, MapOptions file,
string const & contents);
~ScopedFile();