Skip to content

Commit

Permalink
Fix the final warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
Doug committed Feb 24, 2024
1 parent f288547 commit 184c9fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/KeyboardTranslator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ bool KeyboardTranslatorReader::parseAsKeyCode(const QString& item , int& keyCode
QKeySequence sequence = QKeySequence::fromString(item);
if ( !sequence.isEmpty() )
{
keyCode = sequence[0];
keyCode = sequence[0].toCombined();

if ( sequence.count() > 1 )
{
Expand Down
1 change: 1 addition & 0 deletions lib/TerminalDisplay.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3314,6 +3314,7 @@ void AutoScrollHandler::timerEvent(QTimerEvent* event)

QMouseEvent mouseEvent( QEvent::MouseMove,
widget()->mapFromGlobal(QCursor::pos()),
QCursor::pos(),
Qt::NoButton,
Qt::LeftButton,
Qt::NoModifier);
Expand Down

0 comments on commit 184c9fe

Please sign in to comment.