From 1af93e0231817ed8275300a3458ff7a37453188f Mon Sep 17 00:00:00 2001 From: ConfuSomu Date: Sat, 21 Jan 2023 20:21:02 -0500 Subject: Remove debug statement --- src/mainwindow.cpp | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/mainwindow.cpp') diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 6ea82fd..2e4b19b 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -8,7 +8,6 @@ #include #include #include -#include MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent) @@ -111,8 +110,6 @@ void MainWindow::on_buttonSearch_clicked() { selected_match = 0; } else if (++selected_match >= matches.size()) selected_match = 0; - qDebug() << matches.size() << selected_match; - if (not matches.isEmpty()) { ui->listWidget->scrollToItem(matches[selected_match], QAbstractItemView::EnsureVisible); ui->listWidget->setCurrentItem(matches[selected_match]); -- cgit v1.2.3-54-g00ecf