summaryrefslogtreecommitdiff
path: root/src/modinfodialogfiletree.cpp
diff options
context:
space:
mode:
authorisanae <14251494+isanae@users.noreply.github.com>2019-10-04 09:40:37 -0400
committerisanae <14251494+isanae@users.noreply.github.com>2019-10-04 09:40:37 -0400
commitc4dd23abb7a37531040d6348c491dc868919013c (patch)
treecc007db06d880869f8b1c6fec6f074fecb9b9e0e /src/modinfodialogfiletree.cpp
parent2fe50f2ff366ea850eb70a85c6ea7d6c936bf08a (diff)
added error messages to FileRenamer and a few more
fixes for shell functions changing names
Diffstat (limited to 'src/modinfodialogfiletree.cpp')
-rw-r--r--src/modinfodialogfiletree.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modinfodialogfiletree.cpp b/src/modinfodialogfiletree.cpp
index 207c792d..71ea9210 100644
--- a/src/modinfodialogfiletree.cpp
+++ b/src/modinfodialogfiletree.cpp
@@ -128,7 +128,7 @@ void FileTreeTab::onOpen()
return;
}
- shell::OpenFile(m_fs->filePath(selection));
+ shell::Open(m_fs->filePath(selection));
}
void FileTreeTab::onPreview()
@@ -146,9 +146,9 @@ void FileTreeTab::onExplore()
auto selection = singleSelection();
if (selection.isValid()) {
- shell::ExploreFile(m_fs->filePath(selection));
+ shell::Explore(m_fs->filePath(selection));
} else {
- shell::ExploreFile(mod().absolutePath());
+ shell::Explore(mod().absolutePath());
}
}
@@ -204,7 +204,7 @@ void FileTreeTab::onUnhide()
void FileTreeTab::onOpenInExplorer()
{
- shell::ExploreFile(mod().absolutePath());
+ shell::Explore(mod().absolutePath());
}
bool FileTreeTab::deleteFile(const QModelIndex& index)