Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/qhexedit.h
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,9 @@ public slots:
bool isReadOnly();
void setReadOnly(bool readOnly);

qint64 _bPosFirst; // position of first byte shown
qint64 _bPosLast; // position of last byte shown
qint64 _bPosCurrent; // current position
protected:
// Handle events
bool event(QEvent *event);
Expand Down Expand Up @@ -395,9 +398,6 @@ private slots:
// Name convention: absolute byte positions in chunks start with _b
qint64 _bSelectionBegin; // first position of Selection
qint64 _bSelectionEnd; // end of Selection
qint64 _bPosFirst; // position of first byte shown
qint64 _bPosLast; // position of last byte shown
qint64 _bPosCurrent; // current position

// variables to store the property values
bool _addressArea; // left area of QHexEdit
Expand Down