Skip to content

Commit

Permalink
fix: initialize m_keyPassthru in VCScrollArea constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
Pac72 committed Jun 18, 2024
1 parent 617c210 commit e0912e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/virtualconsole/vcscrollarea.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "vcscrollarea.h"
#include "qevent.h"

VCScrollArea::VCScrollArea(QWidget *parent) : QScrollArea(parent) {
VCScrollArea::VCScrollArea(QWidget *parent) : QScrollArea(parent), m_keyPassthru(false) {
// nothing more right now
}

Expand Down

0 comments on commit e0912e5

Please sign in to comment.