Fix compiler warning, part 1 of #946

This commit is contained in:
Albrecht Schlosser 2024-04-04 22:59:08 +02:00
parent 06e495f262
commit 3ac16f1dc4

View File

@ -1,7 +1,7 @@
//
// Main header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2023 by Bill Spitzak and others.
// Copyright 1998-2024 by Bill Spitzak and others.
//
// This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file. If this
@ -1493,7 +1493,7 @@ public:
*/
static void cairo_flush(cairo_t *c) {
// flush Cairo drawings: necessary at least for Windows
cairo_surface_t *s = cairo_get_target(Fl::cairo_cc());
cairo_surface_t *s = cairo_get_target(c);
cairo_surface_flush(s);
}