aboutsummaryrefslogtreecommitdiff
path: root/src/forms
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2018-01-04 13:16:13 +0100
committerAqua-sama <aqua@iserlohn-fortress.net>2018-01-04 13:16:13 +0100
commitfad0abffec1ba784256daa68c7d52891c2d08825 (patch)
treed7d255805500e1f2598ef6aea7b21ca116a1b1df /src/forms
parentFixed crash with Settings dialog (diff)
downloadsmolbote-fad0abffec1ba784256daa68c7d52891c2d08825.tar.xz
Various minor fixes
- typo fixes - bumped copyright year - removed a bunch of unused imports - fixed a couple of clazy warnings
Diffstat (limited to 'src/forms')
-rw-r--r--src/forms/aboutdialog.cpp2
-rw-r--r--src/forms/cookiesform.cpp1
-rw-r--r--src/forms/searchform.cpp1
3 files changed, 1 insertions, 3 deletions
diff --git a/src/forms/aboutdialog.cpp b/src/forms/aboutdialog.cpp
index 3f89118..0744a5f 100644
--- a/src/forms/aboutdialog.cpp
+++ b/src/forms/aboutdialog.cpp
@@ -43,7 +43,7 @@ AboutDialog::AboutDialog(QWidget *parent) :
QLabel *aboutLabel = new QLabel(this);
aboutLabel->setWordWrap(true);
aboutLabel->setText(tr("<h2>smolbote %1</h2>"
- "<p><i>yet another Qute browser</i></p>")
+ "<p><i>yet another no-frills browser</i></p>")
.arg(qApp->applicationVersion()));
ui->toolBox->addItem(aboutLabel, tr("About"));
diff --git a/src/forms/cookiesform.cpp b/src/forms/cookiesform.cpp
index fb90f4a..94d1854 100644
--- a/src/forms/cookiesform.cpp
+++ b/src/forms/cookiesform.cpp
@@ -9,7 +9,6 @@
#include "cookiesform.h"
#include "ui_cookiesform.h"
-#include <QTreeWidget>
#include <QDateTime>
CookiesForm::CookiesForm(QWebEngineCookieStore *store, QWidget *parent) :
diff --git a/src/forms/searchform.cpp b/src/forms/searchform.cpp
index c05c6b2..b12ff80 100644
--- a/src/forms/searchform.cpp
+++ b/src/forms/searchform.cpp
@@ -10,7 +10,6 @@
#include "ui_searchform.h"
#include "../mainwindow.h"
-#include <QFlags>
#include <settings/configuration.h>
SearchForm::SearchForm(MainWindow *parentWindow, QWidget *parent) :