Skip to content

Commit 99edcac

Browse files
committed
Fixed crash related to unsigned long
1 parent 858164b commit 99edcac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/open_with_dlg.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ OpenWithDlg::OpenWithDlg(wxWindow* parent, const project& project, const vector<
1919
fitWindowMinSize(this);
2020

2121
//populate list ctrl in reverse so ids match
22-
for (unsigned long x = versions.size()-1; x >= 0; x--){
22+
for (long x = versions.size()-1; x >= 0; x--){
2323
editor e = versions[x];
2424
wxListItem i;
2525
i.SetId(0);

0 commit comments

Comments
 (0)