Skip to content

Commit

Permalink
Small typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Wohlstand committed Jul 4, 2015
1 parent 8d4cb41 commit 383a9be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Editor/main_window/tools/main_clean_npc_gargage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ void MainWindow::on_actionClear_NPC_garbadge_triggered()
QMessageBox::information(this, tr("NPC garbage clean-up"), tr("Everything is fine, level has no NPC gargabe!"), QMessageBox::Ok);
else
{
QMessageBox::StandardButton x=QMessageBox::question(this, tr("NPC garbage clean-up"), tr("Found %1 junk NPC's. Are you want to remove them?\nPress to \"Help\" button to show up some found junk NPC's").arg(_found_garbage.size()), QMessageBox::Yes|QMessageBox::No|QMessageBox::Help);
QMessageBox::StandardButton x=QMessageBox::question(this, tr("NPC garbage clean-up"), tr("Found %1 junk NPC's. Do you want to remove them?\nPress to \"Help\" button to show up some found junk NPC's").arg(_found_garbage.size()), QMessageBox::Yes|QMessageBox::No|QMessageBox::Help);
if((x!=QMessageBox::Yes)&&(x!=QMessageBox::Help)) return;
bool help=(x==QMessageBox::Help);
LvlScene *sc = box->scene;
Expand Down

0 comments on commit 383a9be

Please sign in to comment.