summaryrefslogtreecommitdiff
path: root/src/downloadlist.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/downloadlist.cpp')
-rw-r--r--src/downloadlist.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/downloadlist.cpp b/src/downloadlist.cpp
index 503274e6..a44850cb 100644
--- a/src/downloadlist.cpp
+++ b/src/downloadlist.cpp
@@ -82,8 +82,10 @@ QVariant DownloadList::data(const QModelIndex &index, int role) const
DownloadManager::DownloadState state = m_Manager->getState(index.row());
switch (state) {
case DownloadManager::STATE_INSTALLED : return tr("Installed");
+ case DownloadManager::STATE_UNINSTALLED : return tr("Uninstalled");
case DownloadManager::STATE_READY : return tr("Downloaded");
case DownloadManager::STATE_DOWNLOADING : return m_Manager->getProgress(index.row()).second;
+ case DownloadManager::STATE_PAUSED : return tr("Paused");
default : return state;
}
} else {