aboutsummaryrefslogtreecommitdiff
path: root/launcher/minecraft/launch/ScanModFolders.h
diff options
context:
space:
mode:
authorSefa Eyeoglu <contact@scrumplex.net>2023-08-02 18:35:35 +0200
committerSefa Eyeoglu <contact@scrumplex.net>2023-08-02 18:35:35 +0200
commit1d468ac35ad88d8c77cc83f25e3704d9bd7df01b (patch)
tree8644b1574c947a1a87c5c7b2567f746cfe17882f /launcher/minecraft/launch/ScanModFolders.h
parentce2ca1381519a2e261d7f76dffa874d559d979c2 (diff)
downloadPrismLauncher-1d468ac35ad88d8c77cc83f25e3704d9bd7df01b.tar.gz
PrismLauncher-1d468ac35ad88d8c77cc83f25e3704d9bd7df01b.tar.bz2
PrismLauncher-1d468ac35ad88d8c77cc83f25e3704d9bd7df01b.zip
chore: reformat
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
Diffstat (limited to 'launcher/minecraft/launch/ScanModFolders.h')
-rw-r--r--launcher/minecraft/launch/ScanModFolders.h19
1 files changed, 8 insertions, 11 deletions
diff --git a/launcher/minecraft/launch/ScanModFolders.h b/launcher/minecraft/launch/ScanModFolders.h
index 111a5850..a5b75825 100644
--- a/launcher/minecraft/launch/ScanModFolders.h
+++ b/launcher/minecraft/launch/ScanModFolders.h
@@ -18,26 +18,23 @@
#include <launch/LaunchStep.h>
#include <memory>
-class ScanModFolders: public LaunchStep
-{
+class ScanModFolders : public LaunchStep {
Q_OBJECT
-public:
- explicit ScanModFolders(LaunchTask *parent) : LaunchStep(parent) {};
+ public:
+ explicit ScanModFolders(LaunchTask* parent) : LaunchStep(parent){};
virtual ~ScanModFolders(){};
virtual void executeTask() override;
- virtual bool canAbort() const override
- {
- return false;
- }
-private slots:
+ virtual bool canAbort() const override { return false; }
+ private slots:
void coreModsDone();
void modsDone();
void nilModsDone();
-private:
+
+ private:
void checkDone();
-private: // DATA
+ private: // DATA
bool m_modsDone = false;
bool m_nilModsDone = false;
bool m_coreModsDone = false;