summaryrefslogtreecommitdiffstats
path: root/usersdialog.cpp
diff options
context:
space:
mode:
authorAnne Jan Brouwer <brouwer@annejan.com>2016-05-30 17:18:06 +0200
committerAnne Jan Brouwer <annejan@noprotocol.com>2016-05-30 17:18:06 +0200
commitb6eececed2490081ed18f6dcadc60f9fd15899e5 (patch)
treeae2045e4d9fb04898251ce4af8b448737700bc27 /usersdialog.cpp
parent2e0a15113fd8bd4b98c9c9f82bc9b95c28b3565e (diff)
clang formatter
Diffstat (limited to 'usersdialog.cpp')
-rw-r--r--usersdialog.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/usersdialog.cpp b/usersdialog.cpp
index 3dc395e4..fcd52963 100644
--- a/usersdialog.cpp
+++ b/usersdialog.cpp
@@ -1,7 +1,7 @@
#include "usersdialog.h"
-#include <QRegExp>
-#include <QDebug>
#include "ui_usersdialog.h"
+#include <QDebug>
+#include <QRegExp>
UsersDialog::UsersDialog(QWidget *parent)
: QDialog(parent), ui(new Ui::UsersDialog) {
@@ -99,12 +99,12 @@ void UsersDialog::closeEvent(QCloseEvent *event) {
void UsersDialog::on_checkBox_clicked() { populateList(ui->lineEdit->text()); }
-void UsersDialog::keyPressEvent(QKeyEvent * event) {
- switch (event->key()) {
- case Qt::Key_Escape:
- ui->lineEdit->clear();
- break;
- default:
- break;
- }
+void UsersDialog::keyPressEvent(QKeyEvent *event) {
+ switch (event->key()) {
+ case Qt::Key_Escape:
+ ui->lineEdit->clear();
+ break;
+ default:
+ break;
+ }
}