fix:修正主动中断检查后崩溃问题。

This commit is contained in:
2025-11-15 23:48:30 +08:00
parent d73ddf7341
commit d0a0d06c1b
8 changed files with 65 additions and 3 deletions

View File

@@ -115,6 +115,9 @@ void FileManager::InitMenu()
menu_->addAction(tr("过滤器"), this, &FileManager::ShowFilterForm);
menu_->addAction(tr("复制文件路径"), this, &FileManager::CopyFullPath);
menu_->addAction(tr("属性"), this, &FileManager::ShowProperties);
menu_->addAction(tr("重命名"), this, &FileManager::OperRename);
menu_->addAction(tr("删除"), this, &FileManager::OperDelete);
menu_->addAction(tr("新建文件夹"), this, &FileManager::OperNewFolder);
menu_->addSeparator();
}
@@ -521,6 +524,22 @@ void FileManager::UpDown()
emit sigSendTasks(tasks);
}
void FileManager::OperNewFolder()
{
}
void FileManager::OperDelete()
{
}
void FileManager::OperRename()
{
}
void FileManager::WaitMsg()
{
}
QString FileManager::GetRoot()
{
if (isRemote_) {