From 41c30cdf376730a68fcda69b57b1139f143a5543 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Wed, 26 Dec 2018 19:53:20 +0100 Subject: Fix indentation and code-style. --- src/mainwindow.h | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) (limited to 'src/mainwindow.h') diff --git a/src/mainwindow.h b/src/mainwindow.h index c9a1844..1138dfb 100644 --- a/src/mainwindow.h +++ b/src/mainwindow.h @@ -25,8 +25,7 @@ * along with Kaiman; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#ifndef __KAIMAN_MAINWINDOW_H__ -#define __KAIMAN_MAINWINDOW_H__ +#pragma once #include @@ -36,21 +35,21 @@ #include "outputwindow.h" #include "luascript.h" -class MainWindow : public QMainWindow { -Q_OBJECT +class MainWindow + : public QMainWindow +{ + Q_OBJECT public: - MainWindow(QString program); + MainWindow(QString program); private slots: - void reset(); + void reset(); private: - CodeEditor *editor; + CodeEditor *editor; - QFileSystemWatcher watcher; - QString program; - OutputWindow *out; - LUAScript *l; + QFileSystemWatcher watcher; + QString program; + OutputWindow *out; + LUAScript *l; }; - -#endif/*__KAIMAN_MAINWINDOW_H__*/ -- cgit v1.2.3