[iPhone] Cancel download confirmation
This commit is contained in:
Alex Zolotarev 2010-12-13 10:54:30 +00:00 committed by Alex Zolotarev
parent e6a84412b7
commit e125fa2afa

View file

@ -320,6 +320,17 @@ mapinfo::TIndex g_clickedIndex;
}
break;
case mapinfo::EDownloading:
{ // display confirmation popup
UIActionSheet * popupQuery = [[UIActionSheet alloc]
initWithTitle: countryName
delegate: self
cancelButtonTitle: @"Do Nothing"
destructiveButtonTitle: @"Cancel Download"
otherButtonTitles: nil];
[popupQuery showFromRect: [cell frame] inView: tableView animated: YES];
[popupQuery release];
}
break;
case mapinfo::EInQueue:
// cancel download
g_pStorage->DeleteCountry(g_clickedIndex);