summaryrefslogtreecommitdiffstats
path: root/usersdialog.cpp
diff options
context:
space:
mode:
authorAnne Jan Brouwer <brouwer@annejan.com>2015-11-24 01:19:28 +0100
committerAnne Jan Brouwer <annejan@noprotocol.com>2015-11-24 01:19:28 +0100
commit703840e9273af99698c909257efd4e93d3d72a15 (patch)
tree9271afd9b0197baaa52da180b2fcdc88e1029783 /usersdialog.cpp
parentc34054da00a7151c7d35cabdd3228b1a982d4bee (diff)
Even more linting and one more tiny opti
Diffstat (limited to 'usersdialog.cpp')
-rw-r--r--usersdialog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/usersdialog.cpp b/usersdialog.cpp
index e6691e8e..424524ec 100644
--- a/usersdialog.cpp
+++ b/usersdialog.cpp
@@ -1,7 +1,7 @@
#include "usersdialog.h"
-#include "ui_usersdialog.h"
#include <QRegExp>
#include <QDebug>
+#include "ui_usersdialog.h"
UsersDialog::UsersDialog(QWidget *parent)
: QDialog(parent), ui(new Ui::UsersDialog) {
@@ -89,7 +89,7 @@ void UsersDialog::on_lineEdit_textChanged(const QString &filter) {
}
void UsersDialog::closeEvent(QCloseEvent *event) {
- // TODO save window size or somethign
+ // TODO(annejan) save window size or somethign
event->accept();
}