Code style refactoring done

This commit is contained in:
Andrew nuark G 2021-01-10 19:49:24 +07:00
parent 02766bd5d2
commit c5f1572efa
36 changed files with 202 additions and 130 deletions

View file

@ -9,20 +9,20 @@
#include <QMainWindow>
#include <QMessageBox>
namespace Ui {
class AuthWindow;
}
namespace Ui { class AuthWindow; }
class AuthWindow : public QMainWindow {
private:
Q_OBJECT
Ui::AuthWindow *ui;
public:
explicit AuthWindow(QWidget *parent = nullptr);
~AuthWindow();
private:
Ui::AuthWindow *ui;
void on_auth_requested();
};