From ea6292168a6acd4c263913f0ccd7dd64daf4f5cf Mon Sep 17 00:00:00 2001 From: Sandro Jäckel Date: Fri, 23 Feb 2018 01:45:58 +0100 Subject: Revert "Applied clang-format on source" This reverts commit 5e5c9c07291f6b09623d31c92b1fb61c4ede576e. --- src/moshortcut.h | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) (limited to 'src/moshortcut.h') diff --git a/src/moshortcut.h b/src/moshortcut.h index 8ae5bb24..7b7574b9 100644 --- a/src/moshortcut.h +++ b/src/moshortcut.h @@ -17,27 +17,30 @@ You should have received a copy of the GNU General Public License along with Mod Organizer. If not, see . */ + #pragma once + #include + class MOShortcut { public: - MOShortcut(const QString& link); + MOShortcut(const QString& link); - /// true iff intialized using a valid moshortcut link - operator bool() const { return m_valid; } + /// true iff intialized using a valid moshortcut link + operator bool() const { return m_valid; } - bool hasInstance() const { return m_hasInstance; } + bool hasInstance() const { return m_hasInstance; } - const QString& instance() const { return m_instance; } + const QString& instance() const { return m_instance; } - const QString& executable() const { return m_executable; } + const QString& executable() const { return m_executable; } private: - QString m_instance; - QString m_executable; - bool m_valid; - bool m_hasInstance; + QString m_instance; + QString m_executable; + bool m_valid; + bool m_hasInstance; }; -- cgit v1.3.1