From f333191312a85329cfe8ac8180ada4b1fe9f422e Mon Sep 17 00:00:00 2001 From: ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> Date: Thu, 18 Feb 2021 08:27:52 +0100 Subject: Make clear we're calling a member function of class Fl_WinAPI_System_Driver. --- src/drivers/WinAPI/Fl_WinAPI_System_Driver.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/drivers/WinAPI/Fl_WinAPI_System_Driver.cxx') 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) { -- cgit v1.2.3