Skip to content

Commit

Permalink
Formatted all files
Browse files Browse the repository at this point in the history
  • Loading branch information
kitswas committed Jul 13, 2023
1 parent 357ece7 commit 965e3c4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "mainwindow.hpp"

#include <QApplication>

#include "mainwindow.hpp"

int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Expand Down
4 changes: 2 additions & 2 deletions src/mainwindow.cpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#include "mainwindow.hpp"

#include "./ui_mainwindow.h"

MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent), ui(new Ui::MainWindow)
MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow)
{
ui->setupUi(this);
}
Expand Down
6 changes: 3 additions & 3 deletions src/mainwindow.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@
QT_BEGIN_NAMESPACE
namespace Ui
{
class MainWindow;
class MainWindow;
}
QT_END_NAMESPACE

class MainWindow : public QMainWindow
{
Q_OBJECT

public:
public:
MainWindow(QWidget *parent = nullptr);
~MainWindow();

private:
private:
Ui::MainWindow *ui;
};
#endif // MAINWINDOW_H

0 comments on commit 965e3c4

Please sign in to comment.