diff options
Diffstat (limited to 'smglobals.h')
-rw-r--r-- | smglobals.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/smglobals.h b/smglobals.h index 64cc418..825640d 100644 --- a/smglobals.h +++ b/smglobals.h @@ -39,6 +39,7 @@ class SmGlobals : public QObject { const QHash<QString, QString> & icons() const { return mIcons; } qint64 dvdSize() const { return mDvdSize; } QList<QWidget*> &treeWidgets() { return mTreeWidgets; } + QHash<int, QString> filetypeMap() const { return mFiletypeMap; } private: SmGlobals(); @@ -54,6 +55,7 @@ class SmGlobals : public QObject { qint64 mDvdSize; QList<QWidget*> mTreeWidgets; ArchiveController *mArchiveController; + QHash<int, QString> mFiletypeMap; }; #endif |