diff options
| author | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2022-03-24 06:30:33 +0100 |
|---|---|---|
| committer | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2022-03-24 06:30:33 +0100 |
| commit | 70f61a63f4cc6ff53d8d6e7c60dd21ff71b9414e (patch) | |
| tree | 394d4996d9f6951848b8e0218346b4f3214c49af /src/Fl_System_Driver.cxx | |
| parent | 194164054b5a2de2da7ce8696910586c66d2f3a8 (diff) | |
| parent | 29c6d6c679d873988581e878f395399a6c4bb369 (diff) | |
Merge remote-tracking branch 'refs/remotes/origin/master'
Diffstat (limited to 'src/Fl_System_Driver.cxx')
| -rw-r--r-- | src/Fl_System_Driver.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Fl_System_Driver.cxx b/src/Fl_System_Driver.cxx index 143585b72..42a8e18eb 100644 --- a/src/Fl_System_Driver.cxx +++ b/src/Fl_System_Driver.cxx @@ -401,15 +401,15 @@ unsigned Fl_System_Driver::utf8from_mb(char* dst, unsigned dstlen, const char* s return srclen; } -int Fl_System_Driver::clocale_printf(FILE *output, const char *format, va_list args) { +int Fl_System_Driver::clocale_vprintf(FILE *output, const char *format, va_list args) { return vfprintf(output, format, args); } -int Fl_System_Driver::clocale_snprintf(char *output, size_t output_size, const char *format, va_list args) { +int Fl_System_Driver::clocale_vsnprintf(char *output, size_t output_size, const char *format, va_list args) { return 0; // overridden in platform drivers } -int Fl_System_Driver::clocale_sscanf(const char *input, const char *format, va_list args) { +int Fl_System_Driver::clocale_vsscanf(const char *input, const char *format, va_list args) { return 0; // overridden in platform drivers } @@ -509,7 +509,7 @@ void Fl_System_Driver::gettime(time_t *sec, int *usec) { Platform drivers \b MUST override this virtual method to do their own stuff and call this base class method to run the platform independent wait functions. - + Overriden methods will typically call this method early and perform platform-specific operations after that in order to work with the \p time_to_wait value possibly modified by this method. |
