1
0
Fork 0

GUI: removed initial zero on the HexEditDialog

This commit is contained in:
Mr. eXoDia 2014-07-05 15:37:22 +02:00
parent 766f2fa097
commit ed823e494b
1 changed files with 0 additions and 1 deletions

View File

@ -29,7 +29,6 @@ HexEditDialog::HexEditDialog(QWidget *parent) :
mHexEdit->setBackgroundColor(ConfigColor("HexEditBackgroundColor"));
mHexEdit->setSelectionColor(ConfigColor("HexEditSelectionColor"));
connect(mHexEdit, SIGNAL(dataChanged()), this, SLOT(dataChangedSlot()));
mHexEdit->setData(QByteArray(1,0));
ui->scrollArea->setWidget(mHexEdit);
mHexEdit->widget()->setFocus();
mHexEdit->setTabOrder(ui->btnUnicode2Hex, mHexEdit->widget());