File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1035,12 +1035,12 @@ void QHexEdit::setSelection(qint64 pos)
10351035 }
10361036}
10371037
1038- int QHexEdit::getSelectionBegin ()
1038+ qint64 QHexEdit::getSelectionBegin ()
10391039{
10401040 return _bSelectionBegin;
10411041}
10421042
1043- int QHexEdit::getSelectionEnd ()
1043+ qint64 QHexEdit::getSelectionEnd ()
10441044{
10451045 return _bSelectionEnd;
10461046}
Original file line number Diff line number Diff line change @@ -346,8 +346,8 @@ public slots:
346346 void resetSelection (qint64 pos); // set selectionStart and selectionEnd to pos
347347 void resetSelection (); // set selectionEnd to selectionStart
348348 void setSelection (qint64 pos); // set min (if below init) or max (if greater init)
349- int getSelectionBegin ();
350- int getSelectionEnd ();
349+ qint64 getSelectionBegin ();
350+ qint64 getSelectionEnd ();
351351
352352 // Private utility functions
353353 void init ();
You can’t perform that action at this time.
0 commit comments