summaryrefslogtreecommitdiff
path: root/src/downloadmanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/downloadmanager.cpp')
-rw-r--r--src/downloadmanager.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/downloadmanager.cpp b/src/downloadmanager.cpp
index 686092b5..1412df51 100644
--- a/src/downloadmanager.cpp
+++ b/src/downloadmanager.cpp
@@ -1037,7 +1037,7 @@ void DownloadManager::openFile(int index)
return;
}
- ExploreFile(m_OutputDirectory);
+ shell::ExploreFile(m_OutputDirectory);
return;
}
@@ -1051,18 +1051,18 @@ void DownloadManager::openInDownloadsFolder(int index)
const auto path = getFilePath(index);
if (QFile::exists(path)) {
- ExploreFile(path);
+ shell::ExploreFile(path);
return;
}
else {
const auto unfinished = path + ".unfinished";
if (QFile::exists(unfinished)) {
- ExploreFile(unfinished);
+ shell::ExploreFile(unfinished);
return;
}
}
- ExploreFile(m_OutputDirectory);
+ shell::ExploreFile(m_OutputDirectory);
}