Update QHexEdit library to version 0.7.8

- closes #692
This commit is contained in:
Iulian Onofrei
2016-08-02 22:17:27 +03:00
parent 489ae18960
commit 54e56c5304
2 changed files with 10 additions and 1 deletions

View File

@@ -14,6 +14,15 @@ const int BYTES_PER_LINE = 16;
QHexEdit::QHexEdit(QWidget *parent) : QAbstractScrollArea(parent)
{
_addressArea = true;
_addressWidth = 4;
_asciiArea = true;
_overwriteMode = true;
_highlighting = true;
_readOnly = false;
_cursorPosition = 0;
_lastEventSize = 0;
_chunks = new Chunks();
_undoStack = new UndoStack(_chunks, this);
#ifdef Q_OS_WIN32

View File

@@ -11,7 +11,7 @@
/** \mainpage
QHexEdit is a binary editor widget for Qt.
\version Version 0.7.7
\version Version 0.7.8
\image html qhexedit.png
*/