summaryrefslogtreecommitdiffstats
path: root/usersdialog.h
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.h
parent2e0a15113fd8bd4b98c9c9f82bc9b95c28b3565e (diff)
clang formatter
Diffstat (limited to 'usersdialog.h')
-rw-r--r--usersdialog.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/usersdialog.h b/usersdialog.h
index d51981a4..adb23854 100644
--- a/usersdialog.h
+++ b/usersdialog.h
@@ -1,11 +1,11 @@
#ifndef USERSDIALOG_H_
#define USERSDIALOG_H_
+#include <QCloseEvent>
+#include <QDateTime>
#include <QDialog>
#include <QList>
#include <QStandardItemModel>
-#include <QCloseEvent>
-#include <QDateTime>
namespace Ui {
class UsersDialog;
@@ -28,25 +28,25 @@ struct UserInfo {
class UsersDialog : public QDialog {
Q_OBJECT
- public:
+public:
explicit UsersDialog(QWidget *parent = 0);
~UsersDialog();
void setUsers(QList<UserInfo> *);
- protected:
+protected:
void closeEvent(QCloseEvent *event);
- void keyPressEvent(QKeyEvent * event);
+ void keyPressEvent(QKeyEvent *event);
- private slots:
+private slots:
void itemChange(QListWidgetItem *item);
void on_clearButton_clicked();
void on_lineEdit_textChanged(const QString &filter);
void on_checkBox_clicked();
- private:
+private:
Ui::UsersDialog *ui;
QList<UserInfo> *userList;
void populateList(const QString &filter);
};
-#endif // USERSDIALOG_H_
+#endif // USERSDIALOG_H_