summaryrefslogtreecommitdiff
path: root/src/downloadlist.h
diff options
context:
space:
mode:
authorKrzysztof Starecki <krzysztof.starecki@gmail.com>2018-12-31 20:29:03 +0100
committerKrzysztof Starecki <krzysztof.starecki@gmail.com>2018-12-31 20:29:03 +0100
commitfd6345cd4e49a135dd833e8567cb5bbe6887ebb9 (patch)
tree12027bdf3c766e1ec2ec8dbbd4b6763b8f31d106 /src/downloadlist.h
parentf3ee7a0566a92037223c8528340d697a6ef2499e (diff)
Add 'download meta information' support to download tab
Diffstat (limited to 'src/downloadlist.h')
-rw-r--r--src/downloadlist.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/downloadlist.h b/src/downloadlist.h
index 4e0b5ef4..a504f209 100644
--- a/src/downloadlist.h
+++ b/src/downloadlist.h
@@ -52,6 +52,8 @@ public:
**/
explicit DownloadList(DownloadManager *manager, QObject *parent = 0);
+ void setMetaDisplay(bool metaDisplay);
+
/**
* @brief retrieve the number of rows to display. Invoked by Qt
*
@@ -90,6 +92,7 @@ public slots:
private:
DownloadManager *m_Manager;
+ bool m_MetaDisplay;
QString sizeFormat(quint64 size) const;
};