aboutsummaryrefslogtreecommitdiff
path: root/launcher/ApplicationMessage.h
diff options
context:
space:
mode:
authorSefa Eyeoglu <contact@scrumplex.net>2023-08-04 19:42:36 +0200
committerGitHub <noreply@github.com>2023-08-04 19:42:36 +0200
commitae793f6cf11658c9abc5111e82d5ba7b3e6af127 (patch)
treeed41f30e2c0f02e4be1d42324b3f05fbab75b2cd /launcher/ApplicationMessage.h
parent50c7d39e082f0a7dbd977401e16d5adf534d9770 (diff)
parent1d638e018ac40fbfb35dd117f9a948c0cf35eadd (diff)
downloadPrismLauncher-ae793f6cf11658c9abc5111e82d5ba7b3e6af127.tar.gz
PrismLauncher-ae793f6cf11658c9abc5111e82d5ba7b3e6af127.tar.bz2
PrismLauncher-ae793f6cf11658c9abc5111e82d5ba7b3e6af127.zip
Merge pull request #1459 from Scrumplex/format
Diffstat (limited to 'launcher/ApplicationMessage.h')
-rw-r--r--launcher/ApplicationMessage.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/launcher/ApplicationMessage.h b/launcher/ApplicationMessage.h
index d66456eb..7ad67433 100644
--- a/launcher/ApplicationMessage.h
+++ b/launcher/ApplicationMessage.h
@@ -1,13 +1,13 @@
#pragma once
-#include <QString>
-#include <QHash>
#include <QByteArray>
+#include <QHash>
+#include <QString>
struct ApplicationMessage {
QString command;
QHash<QString, QString> args;
QByteArray serialize();
- void parse(const QByteArray & input);
+ void parse(const QByteArray& input);
};