From 2e27a93e3ed189b4d96ec7df6e05b102dd2e841a Mon Sep 17 00:00:00 2001 From: Nao Pross Date: Mon, 18 Dec 2017 00:00:21 +0100 Subject: Replace tabs with spaces, set up CMake build system Other changes: - update gitignore - build scripts under `etc` - fix window --- src/ui/Window.cpp | 20 +++++++++----------- src/ui/Window.hpp | 6 +++--- 2 files changed, 12 insertions(+), 14 deletions(-) (limited to 'src/ui') diff --git a/src/ui/Window.cpp b/src/ui/Window.cpp index e3d5b52..7f28ffe 100644 --- a/src/ui/Window.cpp +++ b/src/ui/Window.cpp @@ -12,24 +12,22 @@ #include -namespace samb { +using namespace samb; Window::Window(QWidget *parent): QWidget(parent) { - setWindowTitle("OrbitingYeti"); + setWindowTitle("OrbitingYeti"); - QVBoxLayout *vBox = new QVBoxLayout(this); - QHBoxLayout *hBox = new QHBoxLayout(); + QVBoxLayout *vBox = new QVBoxLayout(this); + QHBoxLayout *hBox = new QHBoxLayout(); - m_quitBtn = new QPushButton("Quit", this); - connect(m_quitBtn, SIGNAL(clicked()), qApp, SLOT(quit())); + m_quitBtn = new QPushButton("Quit", this); + connect(m_quitBtn, SIGNAL(clicked()), qApp, SLOT(quit())); - hBox->addWidget(m_quitBtn, 0, Qt::AlignRight); - vBox->addStretch(1); - vBox->addLayout(hBox); + hBox->addWidget(m_quitBtn, 0, Qt::AlignRight); + vBox->addStretch(1); + vBox->addLayout(hBox); } Window::~Window() { } - -} /* namespace samb */ diff --git a/src/ui/Window.hpp b/src/ui/Window.hpp index 9b04ebb..9f48f12 100644 --- a/src/ui/Window.hpp +++ b/src/ui/Window.hpp @@ -16,11 +16,11 @@ namespace samb { class Window : public QWidget { Q_OBJECT public: - explicit Window(QWidget *parent = 0); - ~Window(); + explicit Window(QWidget *parent = 0); + ~Window(); private: - QPushButton *m_quitBtn; + QPushButton *m_quitBtn; }; } /* namespace samb */ -- cgit v1.2.1