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:
authorvng <viktor.govako@gmail.com>2013-07-08 18:38:51 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:58:29 +0300
commit75d58d02582b8058fce2d9b411a33467a9a3967f (patch)
treeadb5a0ea042792ac3f69e99ad4090eaf2c6c113a /android/jni/com/mapswithme/maps/settings/StoragePathActivity.cpp
parentd2d7828685ff9e9b8c2988c9efc69ed7b6af9923 (diff)
[android] Use alternative zip files for *.ttf and World, WorldCoasts.
Diffstat (limited to 'android/jni/com/mapswithme/maps/settings/StoragePathActivity.cpp')
-rw-r--r--android/jni/com/mapswithme/maps/settings/StoragePathActivity.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/android/jni/com/mapswithme/maps/settings/StoragePathActivity.cpp b/android/jni/com/mapswithme/maps/settings/StoragePathActivity.cpp
index ab904a6389..51dcaeac94 100644
--- a/android/jni/com/mapswithme/maps/settings/StoragePathActivity.cpp
+++ b/android/jni/com/mapswithme/maps/settings/StoragePathActivity.cpp
@@ -29,7 +29,9 @@ extern "C"
Platform & pl = GetPlatform();
// Get regexp like this: (\.mwm$|\.ttf$)
- string const regexp = "(" "\\"DATA_FILE_EXTENSION"$" "|" "\\"BOOKMARKS_FILE_EXTENSION"$" "|" "\\.ttf$" ")";
+ string const regexp = "(" "\\"DATA_FILE_EXTENSION"$" "|"
+ "\\"BOOKMARKS_FILE_EXTENSION"$" "|"
+ "\\"FONT_FILE_EXTENSION"$" ")";
Platform::FilesList files;
pl.GetFilesByRegExp(from, regexp, files);