Fix lambda capture 'this' is not used

wilder-portage
Kurt Hindenburg 6 years ago
parent 56ffdbbb29
commit 4e15b1fdd5
  1. 2
      src/TerminalDisplay.cpp

@ -129,7 +129,7 @@ void TerminalDisplay::setScreenWindow(ScreenWindow* window)
connect(_screenWindow.data(), &Konsole::ScreenWindow::scrolled, this, [this]() {
_filterUpdateRequired = true;
});
connect(_screenWindow.data(), &Konsole::ScreenWindow::outputChanged, this, [this]() {
connect(_screenWindow.data(), &Konsole::ScreenWindow::outputChanged, this, []() {
QGuiApplication::inputMethod()->update(Qt::ImCursorRectangle);
});
_screenWindow->setWindowLines(_lines);

Loading…
Cancel
Save