Skip to content

Commit 39520aa

Browse files
committed
[FIX] : fix missing overrides (#155)
1 parent 5237093 commit 39520aa

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ImGuiFileDialog.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ class FileSystemDirent : public IGFD::IFileSystem {
623623
return res;
624624
}
625625

626-
std::vector<std::string> GetDrivesList() {
626+
std::vector<std::string> GetDrivesList() override {
627627
std::vector<std::string> res;
628628
#ifdef _IGFD_WIN_
629629
const DWORD mydrives = 2048;
@@ -640,7 +640,7 @@ class FileSystemDirent : public IGFD::IFileSystem {
640640
return res;
641641
}
642642

643-
IGFD::Utils::PathStruct ParsePathFileName(const std::string& vPathFileName) {
643+
IGFD::Utils::PathStruct ParsePathFileName(const std::string& vPathFileName) override {
644644
IGFD::Utils::PathStruct res;
645645
if (!vPathFileName.empty()) {
646646
std::string pfn = vPathFileName;

0 commit comments

Comments
 (0)