diff options
| author | Sandro Jäckel <sandro.jaeckel@gmail.com> | 2018-02-23 01:45:58 +0100 |
|---|---|---|
| committer | Sandro Jäckel <sandro.jaeckel@gmail.com> | 2018-02-23 01:45:58 +0100 |
| commit | ea6292168a6acd4c263913f0ccd7dd64daf4f5cf (patch) | |
| tree | 312024abbd7c3c100274f3a8031d49096480b654 /src/moshortcut.h | |
| parent | 5e5c9c07291f6b09623d31c92b1fb61c4ede576e (diff) | |
Revert "Applied clang-format on source"
This reverts commit 5e5c9c07291f6b09623d31c92b1fb61c4ede576e.
Diffstat (limited to 'src/moshortcut.h')
| -rw-r--r-- | src/moshortcut.h | 23 |
1 files changed, 13 insertions, 10 deletions
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 <http://www.gnu.org/licenses/>. */ + #pragma once + #include <QString> + 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; }; |
