mirror of https://github.com/odrling/Aegisub
Eliminate an uninitialized variable warning
Originally committed to SVN as r5649.
This commit is contained in:
parent
d419c7a447
commit
28afc48ca5
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue