From 54e56c53045159f28099083417964d77e4a2dba8 Mon Sep 17 00:00:00 2001 From: Iulian Onofrei Date: Tue, 2 Aug 2016 22:17:27 +0300 Subject: [PATCH] Update QHexEdit library to version 0.7.8 - closes #692 --- libs/qhexedit/src/qhexedit.cpp | 9 +++++++++ libs/qhexedit/src/qhexedit.h | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/libs/qhexedit/src/qhexedit.cpp b/libs/qhexedit/src/qhexedit.cpp index 52ff241b..b6eccab6 100644 --- a/libs/qhexedit/src/qhexedit.cpp +++ b/libs/qhexedit/src/qhexedit.cpp @@ -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 diff --git a/libs/qhexedit/src/qhexedit.h b/libs/qhexedit/src/qhexedit.h index 32577a75..57ce12fb 100644 --- a/libs/qhexedit/src/qhexedit.h +++ b/libs/qhexedit/src/qhexedit.h @@ -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 */