Two more popup conversions.

This commit is contained in:
Eric S. Raymond 2007-06-11 20:17:34 +00:00
parent c9656c5e1a
commit 7c34c85c34

View file

@ -847,9 +847,9 @@ namespace events{
gui_->draw(); //clear the old menu
if(utils::string_bool(level_["disallow_recall"])) {
gui::show_dialog(*gui_,NULL,"",_("You are separated from your soldiers and may not recall them"));
gui::message_dialog(*gui_,"",_("You are separated from your soldiers and may not recall them")).show();
} else if(recall_list.empty()) {
gui::show_dialog(*gui_,NULL,"",_("There are no troops available to recall\n(You must have veteran survivors from a previous scenario)"));
gui::message_dialog(*gui_,"",_("There are no troops available to recall\n(You must have veteran survivors from a previous scenario)")).show();
} else {
std::vector<std::string> options;