summaryrefslogtreecommitdiff
path: root/src/pluginlist.h
diff options
context:
space:
mode:
authorTannin <devnull@localhost>2013-06-07 18:16:52 +0200
committerTannin <devnull@localhost>2013-06-07 18:16:52 +0200
commit50d05236226d04d3854008073420282b8d21f614 (patch)
tree67f4916017f52f1d1b8d746c81b19de808a3568a /src/pluginlist.h
parent97111de1409a59eea9e7ab5050ab70f4d01ddb8e (diff)
- locking/unlocking esps can now be done for the whole selection
- bugfix: MO crashed if the locked index file is borked. This shouldn't happen anymore so I'm not sure how that file breaks to begin with
Diffstat (limited to 'src/pluginlist.h')
-rw-r--r--src/pluginlist.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/pluginlist.h b/src/pluginlist.h
index d2d699d5..bba775dc 100644
--- a/src/pluginlist.h
+++ b/src/pluginlist.h
@@ -130,6 +130,8 @@ public:
static QString getColumnName(int column);
static QString getColumnToolTip(int column);
+ void refreshLoadOrder();
+
public: // implementation of the QAbstractTableModel interface
virtual int rowCount(const QModelIndex &parent = QModelIndex()) const;
@@ -141,7 +143,6 @@ public: // implementation of the QAbstractTableModel interface
virtual Qt::DropActions supportedDropActions() const { return Qt::MoveAction; }
virtual bool dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent);
- void syncLoadOrder();
public slots:
/**
@@ -170,7 +171,7 @@ signals:
private:
- void refreshLoadOrder();
+ void syncLoadOrder();
void updateIndices();
void writePlugins(const QString &fileName, bool writeUnchecked) const;