BinEditor: Fix a dead store

Change-Id: I44d8a60037f02f4467ea085e4ad0d366c6c7aa86
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Nikolai Kosjar
2019-10-31 14:14:17 +01:00
committed by hjk
parent 0d35690682
commit 05ef46efdb

View File

@@ -1179,7 +1179,6 @@ QString BinEditorWidget::toolTip(const QHelpEvent *helpEvent) const
if (!pos) if (!pos)
return QString(); return QString();
selStart = pos.value(); selStart = pos.value();
selEnd = selStart;
byteCount = 1; byteCount = 1;
} }