aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/General/fileops/fileops.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/General/fileops/fileops.h')
-rw-r--r--src/plugins/General/fileops/fileops.h14
1 files changed, 5 insertions, 9 deletions
diff --git a/src/plugins/General/fileops/fileops.h b/src/plugins/General/fileops/fileops.h
index 8940c3f17..1bd112913 100644
--- a/src/plugins/General/fileops/fileops.h
+++ b/src/plugins/General/fileops/fileops.h
@@ -47,22 +47,18 @@ public:
RENAME,
REMOVE,
MOVE,
+ EXECUTE
};
private slots:
- void execAction(int n);
+ void execAction();
private:
void copy(const QList<PlayListTrack*> &tracks, const QString &dest, const MetaDataFormatter *formatter);
- void rename(const QList<PlayListTrack *> &tracks, const MetaDataFormatter *formatter,
- PlayListModel *model);
- void move(const QList<PlayListTrack*> &tracks, const QString &dest, const MetaDataFormatter *formatter,
- PlayListModel *model);
+ void rename(const QList<PlayListTrack *> &tracks, const MetaDataFormatter *formatter, PlayListModel *model);
+ void move(const QList<PlayListTrack*> &tracks, const QString &dest, const MetaDataFormatter *formatter, PlayListModel *model);
+ void execute(const QList<PlayListTrack*> &tracks, const MetaDataFormatter *formatter, PlayListModel *model);
bool isValid(PlayListTrack *track) const;
-
- QList <int> m_types;
- QStringList m_patterns;
- QStringList m_destinations;
};
#endif