Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
horsicq committed Sep 5, 2020
1 parent 6b7e577 commit 03be7d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xdisasmwidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,9 @@ void XDisasmWidget::setData(QIODevice *pDevice, XDisasmModel::SHOWOPTIONS *pShow
}
else
{
int nCount=ui->comboBoxType->count();
int nNumberOfTypes=ui->comboBoxType->count();

for(int i=0;i<nCount;i++)
for(int i=0;i<nNumberOfTypes;i++)
{
if(ui->comboBoxType->itemData(i).toUInt()==pDisasmOptions->fileType)
{
Expand Down

0 comments on commit 03be7d4

Please sign in to comment.