We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5237093 commit 39520aaCopy full SHA for 39520aa
1 file changed
ImGuiFileDialog.cpp
@@ -623,7 +623,7 @@ class FileSystemDirent : public IGFD::IFileSystem {
623
return res;
624
}
625
626
- std::vector<std::string> GetDrivesList() {
+ std::vector<std::string> GetDrivesList() override {
627
std::vector<std::string> res;
628
#ifdef _IGFD_WIN_
629
const DWORD mydrives = 2048;
@@ -640,7 +640,7 @@ class FileSystemDirent : public IGFD::IFileSystem {
640
641
642
643
- IGFD::Utils::PathStruct ParsePathFileName(const std::string& vPathFileName) {
+ IGFD::Utils::PathStruct ParsePathFileName(const std::string& vPathFileName) override {
644
IGFD::Utils::PathStruct res;
645
if (!vPathFileName.empty()) {
646
std::string pfn = vPathFileName;
0 commit comments