summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2021-02-18 08:27:52 +0100
committerManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2021-02-18 08:29:02 +0100
commitf333191312a85329cfe8ac8180ada4b1fe9f422e (patch)
treed23579bc7dbbc6e8417bd76b127be8888837449e /src
parentba0b8affe33ba386ec280b4e10b201679031e44b (diff)
Make clear we're calling a member function of class Fl_WinAPI_System_Driver.
Diffstat (limited to 'src')
-rw-r--r--src/drivers/WinAPI/Fl_WinAPI_System_Driver.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/WinAPI/Fl_WinAPI_System_Driver.cxx b/src/drivers/WinAPI/Fl_WinAPI_System_Driver.cxx
index 38fd50a3d..4a7a0286f 100644
--- a/src/drivers/WinAPI/Fl_WinAPI_System_Driver.cxx
+++ b/src/drivers/WinAPI/Fl_WinAPI_System_Driver.cxx
@@ -217,7 +217,7 @@ int Fl_WinAPI_System_Driver::open(const char *fnam, int oflags, int pmode) {
int Fl_WinAPI_System_Driver::open_ext(const char *fnam, int binary, int oflags, int pmode) {
if (oflags == 0) oflags = _O_RDONLY;
oflags |= (binary ? _O_BINARY : _O_TEXT);
- return open(fnam, oflags, pmode);
+ return this->open(fnam, oflags, pmode);
}
FILE *Fl_WinAPI_System_Driver::fopen(const char *fnam, const char *mode) {