Fix build error

pyro-refactor
MrSimbax 2020-07-18 14:47:18 +02:00
parent 8390d85e46
commit dc64b95406
2 changed files with 3 additions and 3 deletions

View File

@ -37,7 +37,7 @@ public:
void SetDataPath(const std::string &dataPath); void SetDataPath(const std::string &dataPath);
void SetLangPath(const std::string &langPath); void SetLangPath(const std::string &langPath);
void SetSavePath(const std::string &savePath); void SetSavePath(const std::string &savePath);
void AddModSearchDir(const std::string &modAutoloadDirPath); void AddModSearchDir(const std::string &modSearchDirPath);
void AddMod(const std::string &modPath); void AddMod(const std::string &modPath);
void RemoveMod(const std::string &modPath); void RemoveMod(const std::string &modPath);
bool ModLoaded(const std::string& modPath); bool ModLoaded(const std::string& modPath);

View File

@ -44,9 +44,9 @@ protected:
void UpdateLoadedModList(); void UpdateLoadedModList();
protected: protected:
CModManager* m_modManager;
CMainDialog* m_dialog; CMainDialog* m_dialog;
CModManager* m_modManager;
}; };
} // namespace Ui } // namespace Ui