diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-01-04 13:16:13 +0100 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-01-04 13:16:13 +0100 |
commit | fad0abffec1ba784256daa68c7d52891c2d08825 (patch) | |
tree | d7d255805500e1f2598ef6aea7b21ca116a1b1df /src/forms | |
parent | Fixed crash with Settings dialog (diff) | |
download | smolbote-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.cpp | 2 | ||||
-rw-r--r-- | src/forms/cookiesform.cpp | 1 | ||||
-rw-r--r-- | src/forms/searchform.cpp | 1 |
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) : |