aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/mainwindow.cpp3
1 files changed, 0 insertions, 3 deletions
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 <QRandomGenerator>
#include <QClipboard>
#include <QMimeData>
-#include <QDebug>
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]);