summaryrefslogtreecommitdiffstats
path: root/copyworker.h
diff options
context:
space:
mode:
Diffstat (limited to 'copyworker.h')
-rw-r--r--copyworker.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/copyworker.h b/copyworker.h
index 7413f49..165f59b 100644
--- a/copyworker.h
+++ b/copyworker.h
@@ -18,12 +18,12 @@
class CopyWorker : public QThread {
Q_OBJECT
public:
- CopyWorker(QObject *parent = 0);
+ CopyWorker(QObject *parent = nullptr);
void enqueue(const QString &source, const QString &destination);
void appendData(const QString &source, const QVariant &data);
const QHash<QString, QList<QVariant> > data() const { return mData; }
void clear();
- qint64 max() const { return mMax; }
+ int max() const { return mMax; }
virtual void run();
signals: