NOISSUE Split MultiMC app object into MultiMC and Env

This commit is contained in:
Petr Mrázek
2015-01-31 16:59:03 +01:00
parent e508728246
commit 6f3aa65bd6
44 changed files with 343 additions and 325 deletions

View File

@ -30,7 +30,7 @@ class IconList : public QAbstractListModel
{
Q_OBJECT
public:
explicit IconList(QObject *parent = 0);
explicit IconList(QString path, QObject *parent = 0);
virtual ~IconList() {};
QIcon getIcon(QString key);
@ -64,9 +64,10 @@ private:
IconList &operator=(const IconList &) = delete;
void reindex();
protected
slots:
public slots:
void directoryChanged(const QString &path);
protected slots:
void fileChanged(const QString &path);
void SettingChanged(const Setting & setting, QVariant value);
private: