deleting multiple rows, instead of getting a completely random
number (usually very large, from random memory location) in
the message.
git-svn-id: svn://svn.pgadmin.org/trunk/pgadmin3@8006
a7884b65-44f6-0310-8a51-
81a127f17b15
return;
wxString prompt;
- prompt.Printf(wxPLURAL("Are you sure you wish to delete the selected row?", "Are you sure you wish to delete the %d selected rows?", i));
+ prompt.Printf(wxPLURAL("Are you sure you wish to delete the selected row?", "Are you sure you wish to delete the %d selected rows?", i), i);
wxMessageDialog msg(this, prompt, _("Delete rows?"), wxYES_NO | wxICON_QUESTION);
if (msg.ShowModal() != wxID_YES)