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:
authorIlya Grechuhin <i.grechuhin@gmail.com>2018-01-24 12:09:05 +0300
committerRoman Kuznetsov <r.kuznetsow@gmail.com>2018-01-24 13:12:16 +0300
commit13cb22f319683aa7216b286a337586e11c2aee99 (patch)
tree953aa7e7b03ac1434d5010255ee1bb70ac7b9287
parent9ecb9c71b456fc287e54a215589e557d7c6021b8 (diff)
[release-806-cherry] [MAPSME-6609] [ios] Removed NY dog.ios-store-806
-rw-r--r--iphone/Maps/Images.xcassets/Search/Empty state images/img_mappyny.imageset/Contents.json23
-rw-r--r--iphone/Maps/Images.xcassets/Search/Empty state images/img_mappyny.imageset/img_mappyny.pngbin34491 -> 0 bytes
-rw-r--r--iphone/Maps/Images.xcassets/Search/Empty state images/img_mappyny.imageset/img_mappyny@2x.pngbin83591 -> 0 bytes
-rw-r--r--iphone/Maps/Images.xcassets/Search/Empty state images/img_mappyny.imageset/img_mappyny@3x.pngbin144100 -> 0 bytes
-rw-r--r--iphone/Maps/UI/Search/SearchNoResultsViewController.swift2
-rw-r--r--iphone/Maps/UI/Search/TableView/MWMSearchTableView.mm2
6 files changed, 2 insertions, 25 deletions
diff --git a/iphone/Maps/Images.xcassets/Search/Empty state images/img_mappyny.imageset/Contents.json b/iphone/Maps/Images.xcassets/Search/Empty state images/img_mappyny.imageset/Contents.json
deleted file mode 100644
index f74ad5d16b..0000000000
--- a/iphone/Maps/Images.xcassets/Search/Empty state images/img_mappyny.imageset/Contents.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "images" : [
- {
- "idiom" : "universal",
- "filename" : "img_mappyny.png",
- "scale" : "1x"
- },
- {
- "idiom" : "universal",
- "filename" : "img_mappyny@2x.png",
- "scale" : "2x"
- },
- {
- "idiom" : "universal",
- "filename" : "img_mappyny@3x.png",
- "scale" : "3x"
- }
- ],
- "info" : {
- "version" : 1,
- "author" : "xcode"
- }
-} \ No newline at end of file
diff --git a/iphone/Maps/Images.xcassets/Search/Empty state images/img_mappyny.imageset/img_mappyny.png b/iphone/Maps/Images.xcassets/Search/Empty state images/img_mappyny.imageset/img_mappyny.png
deleted file mode 100644
index 0d02c18fb0..0000000000
--- a/iphone/Maps/Images.xcassets/Search/Empty state images/img_mappyny.imageset/img_mappyny.png
+++ /dev/null
Binary files differ
diff --git a/iphone/Maps/Images.xcassets/Search/Empty state images/img_mappyny.imageset/img_mappyny@2x.png b/iphone/Maps/Images.xcassets/Search/Empty state images/img_mappyny.imageset/img_mappyny@2x.png
deleted file mode 100644
index a9b5d395d1..0000000000
--- a/iphone/Maps/Images.xcassets/Search/Empty state images/img_mappyny.imageset/img_mappyny@2x.png
+++ /dev/null
Binary files differ
diff --git a/iphone/Maps/Images.xcassets/Search/Empty state images/img_mappyny.imageset/img_mappyny@3x.png b/iphone/Maps/Images.xcassets/Search/Empty state images/img_mappyny.imageset/img_mappyny@3x.png
deleted file mode 100644
index ab28bd0b94..0000000000
--- a/iphone/Maps/Images.xcassets/Search/Empty state images/img_mappyny.imageset/img_mappyny@3x.png
+++ /dev/null
Binary files differ
diff --git a/iphone/Maps/UI/Search/SearchNoResultsViewController.swift b/iphone/Maps/UI/Search/SearchNoResultsViewController.swift
index 8e4bc04914..24e1926888 100644
--- a/iphone/Maps/UI/Search/SearchNoResultsViewController.swift
+++ b/iphone/Maps/UI/Search/SearchNoResultsViewController.swift
@@ -13,7 +13,7 @@ final class SearchNoResultsViewController: MWMViewController {
override func viewDidLoad() {
super.viewDidLoad()
- container.addSubview(MWMSearchNoResults.view(with: #imageLiteral(resourceName: "img_mappyny"),
+ container.addSubview(MWMSearchNoResults.view(with: #imageLiteral(resourceName: "img_search_not_found"),
title: L("search_not_found"),
text: L("search_not_found_query")))
MWMKeyboard.add(self)
diff --git a/iphone/Maps/UI/Search/TableView/MWMSearchTableView.mm b/iphone/Maps/UI/Search/TableView/MWMSearchTableView.mm
index bac52b9574..40936f946d 100644
--- a/iphone/Maps/UI/Search/TableView/MWMSearchTableView.mm
+++ b/iphone/Maps/UI/Search/TableView/MWMSearchTableView.mm
@@ -61,7 +61,7 @@
{
if (!_noResultsView)
{
- _noResultsView = [MWMSearchNoResults viewWithImage:[UIImage imageNamed:@"img_mappyny"]
+ _noResultsView = [MWMSearchNoResults viewWithImage:[UIImage imageNamed:@"img_search_not_found"]
title:L(@"search_not_found")
text:L(@"search_not_found_query")];
}