summaryrefslogtreecommitdiffstats
path: root/gui/LegacyModEditDialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'gui/LegacyModEditDialog.h')
-rw-r--r--gui/LegacyModEditDialog.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gui/LegacyModEditDialog.h b/gui/LegacyModEditDialog.h
index b824a86a..5f6973d3 100644
--- a/gui/LegacyModEditDialog.h
+++ b/gui/LegacyModEditDialog.h
@@ -60,10 +60,10 @@ protected:
bool texturePackListFilter( QKeyEvent* ev );
private:
Ui::LegacyModEditDialog *ui;
- QSharedPointer<ModList> m_mods;
- QSharedPointer<ModList> m_coremods;
- QSharedPointer<ModList> m_jarmods;
- QSharedPointer<ModList> m_texturepacks;
+ std::shared_ptr<ModList> m_mods;
+ std::shared_ptr<ModList> m_coremods;
+ std::shared_ptr<ModList> m_jarmods;
+ std::shared_ptr<ModList> m_texturepacks;
LegacyInstance * m_inst;
DownloadJobPtr forgeJob;
};