summaryrefslogtreecommitdiff
path: root/src/filetree.cpp
diff options
context:
space:
mode:
authorJeremy Rimpo <jeremy.rimpo@servermonkey.com>2021-12-06 03:51:08 -0600
committerMikaƫl Capelle <capelle.mikael@gmail.com>2022-04-19 15:17:23 +0200
commitc4b2be45d29a247422e60bb8fdf1664c10384eee (patch)
tree729640dc3e5105fe6eea04a5a03451176fc91a7e /src/filetree.cpp
parentec01532ecbd2d7c99d1b3bdd8cf261795df59327 (diff)
First pass for Qt6 compatibility
Diffstat (limited to 'src/filetree.cpp')
-rw-r--r--src/filetree.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/filetree.cpp b/src/filetree.cpp
index cf20d4fd..02c85fdd 100644
--- a/src/filetree.cpp
+++ b/src/filetree.cpp
@@ -568,7 +568,7 @@ bool FileTree::showShellMenu(QPoint pos)
.arg(item->realPath()));
}
- itor->second.addFile(item->realPath());
+ itor->second.addFile(QFileInfo(item->realPath()));
++totalFiles;
if (item->isConflicted()) {
@@ -611,7 +611,7 @@ bool FileTree::showShellMenu(QPoint pos)
.arg(QString::fromStdWString(fullPath)));
}
- itor->second.addFile(QString::fromStdWString(fullPath));
+ itor->second.addFile(QFileInfo(QString::fromStdWString(fullPath)));
}
}
}