diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2019-12-19 23:00:18 -0500 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2020-02-04 03:33:19 -0500 |
| commit | 2be531470d54fa56307e392ad5bdfbc02048a744 (patch) | |
| tree | 4ab9e436d40b1650fdce9378bdef83b970cd2136 /src/organizercore.h | |
| parent | 0a908c49625fe0e54bc45e29fe8c4908d20b0dbe (diff) | |
renamed ToLower() to avoid confusion with in-place vs copy
pre-hashed file lookup in DirectoryEntry
Diffstat (limited to 'src/organizercore.h')
| -rw-r--r-- | src/organizercore.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/organizercore.h b/src/organizercore.h index 6c9edb9f..4ee6ddc5 100644 --- a/src/organizercore.h +++ b/src/organizercore.h @@ -218,8 +218,16 @@ public: bool onFinishedRun(const std::function<void (const QString &, unsigned int)> &func);
void refreshModList(bool saveChanges = true);
QStringList modsSortedByProfilePriority() const;
- bool getArchiveParsing() const;
- void setArchiveParsing(bool archiveParsing);
+
+ bool getArchiveParsing() const
+ {
+ return m_ArchiveParsing;
+ }
+
+ void setArchiveParsing(bool archiveParsing)
+ {
+ m_ArchiveParsing = archiveParsing;
+ }
public: // IPluginDiagnose interface
|
