Eliminate an uninitialized variable warning

Originally committed to SVN as r5649.
This commit is contained in:
Thomas Goyne 2011-09-28 19:50:06 +00:00
parent d419c7a447
commit 28afc48ca5
1 changed files with 1 additions and 1 deletions

View File

@ -212,7 +212,7 @@ void DialogSelection::Process(wxCommandEvent&) {
con->selectionController->GetSelectedSet(old_sel); con->selectionController->GetSelectedSet(old_sel);
wxString message; wxString message;
size_t count; size_t count = 0;
switch (action) { switch (action) {
case ACTION_SET: case ACTION_SET:
new_sel = matches; new_sel = matches;