diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/Fl_System_Driver.cxx | 5 | ||||
| -rw-r--r-- | src/drivers/Darwin/Fl_Darwin_System_Driver.H | 1 | ||||
| -rw-r--r-- | src/drivers/Posix/Fl_Posix_System_Driver.H | 1 |
3 files changed, 7 insertions, 0 deletions
diff --git a/src/Fl_System_Driver.cxx b/src/Fl_System_Driver.cxx index 686d03ecb..60406bc09 100644 --- a/src/Fl_System_Driver.cxx +++ b/src/Fl_System_Driver.cxx @@ -18,6 +18,7 @@ #include <FL/Fl_System_Driver.H> +#include <FL/Fl.H> #include <FL/fl_utf8.h> #include <stdlib.h> #include <stdio.h> @@ -371,6 +372,10 @@ int Fl_System_Driver::clocale_printf(FILE *output, const char *format, va_list a return vfprintf(output, format, args); } +void Fl_System_Driver::compose_reset() { + Fl::compose_state = 0; +} + // // End of "$Id$". // diff --git a/src/drivers/Darwin/Fl_Darwin_System_Driver.H b/src/drivers/Darwin/Fl_Darwin_System_Driver.H index 29a658d5f..6926487ba 100644 --- a/src/drivers/Darwin/Fl_Darwin_System_Driver.H +++ b/src/drivers/Darwin/Fl_Darwin_System_Driver.H @@ -26,6 +26,7 @@ #define FL_DARWIN_SYSTEM_DRIVER_H #include <FL/Fl_System_Driver.H> +#include <stdlib.h> #include <unistd.h> #include <fcntl.h> #include <sys/stat.h> diff --git a/src/drivers/Posix/Fl_Posix_System_Driver.H b/src/drivers/Posix/Fl_Posix_System_Driver.H index dc5fe83a2..c1f9988f5 100644 --- a/src/drivers/Posix/Fl_Posix_System_Driver.H +++ b/src/drivers/Posix/Fl_Posix_System_Driver.H @@ -26,6 +26,7 @@ #define FL_POSIX_SYSTEM_DRIVER_H #include <FL/Fl_System_Driver.H> +#include <stdlib.h> #include <unistd.h> #include <fcntl.h> #include <sys/stat.h> |
