From 6516a6b7c19713de28db7142612f1c095e541317 Mon Sep 17 00:00:00 2001 From: Tannin Date: Sun, 17 Feb 2013 09:26:29 +0100 Subject: - moved shared and uibase libraries to namespaces - bugfix: the "fix mods" function was accessing the save game data incorrectly, causing a crash --- src/modinfodialog.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/modinfodialog.h') diff --git a/src/modinfodialog.h b/src/modinfodialog.h index 07aa8e84..03cf44ba 100644 --- a/src/modinfodialog.h +++ b/src/modinfodialog.h @@ -51,7 +51,7 @@ class QTreeView; * this is a larger dialog used to visualise information abount the mod. * @todo this would probably a good place for a plugin-system **/ -class ModInfoDialog : public TutorableDialog +class ModInfoDialog : public MOBase::TutorableDialog { Q_OBJECT @@ -76,7 +76,7 @@ public: * @param modInfo info structure about the mod to display * @param parent parend widget **/ - explicit ModInfoDialog(ModInfo::Ptr modInfo, const DirectoryEntry *directory, QWidget *parent = 0); + explicit ModInfoDialog(ModInfo::Ptr modInfo, const MOShared::DirectoryEntry *directory, QWidget *parent = 0); ~ModInfoDialog(); /** @@ -209,8 +209,8 @@ private: QTreeWidgetItem *m_ConflictsContextItem; - const DirectoryEntry *m_Directory; - FilesOrigin *m_Origin; + const MOShared::DirectoryEntry *m_Directory; + MOShared::FilesOrigin *m_Origin; QTextCodec *m_UTF8Codec; }; -- cgit v1.3.1