From 70bdf692794f228b25354c6b3d7c1ead872902ee Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Thu, 23 Feb 2023 19:28:27 +0100 Subject: [PATCH] Move animated gif images to the test/images folder ... to make them accessible to the help_dialog test if built with CMake. --- examples/animgifimage-simple.cxx | 2 +- test/help_dialog.html | 2 +- test/{pixmaps => images}/fltk_animated.gif | Bin test/{pixmaps => images}/fltk_animated2.gif | Bin test/{pixmaps => images}/fltk_animated3.gif | Bin 5 files changed, 2 insertions(+), 2 deletions(-) rename test/{pixmaps => images}/fltk_animated.gif (100%) rename test/{pixmaps => images}/fltk_animated2.gif (100%) rename test/{pixmaps => images}/fltk_animated3.gif (100%) diff --git a/examples/animgifimage-simple.cxx b/examples/animgifimage-simple.cxx index 19f9732f2..20592891d 100644 --- a/examples/animgifimage-simple.cxx +++ b/examples/animgifimage-simple.cxx @@ -24,7 +24,7 @@ int main(int argc, char *argv[]) { // of the `canvas` widget and start it immediately. // We use the `DONT_RESIZE_CANVAS` flag here to tell the // animation *not* to change the canvas size (which is the default). - const char *default_image = "../test/pixmaps/fltk_animated.gif"; + const char *default_image = "../test/images/fltk_animated.gif"; Fl_Anim_GIF_Image animgif(/*name_=*/ argv[1] ? argv[1] : default_image, /*canvas_=*/ &canvas, /*flags_=*/ Fl_Anim_GIF_Image::DONT_RESIZE_CANVAS); diff --git a/test/help_dialog.html b/test/help_dialog.html index 06492e600..e3505236d 100644 --- a/test/help_dialog.html +++ b/test/help_dialog.html @@ -264,7 +264,7 @@ Nested OL/UL: Tiny FLTK logo Tiny FLTK logo. - Animated FLTK logo + Animated FLTK logo Animated FLTK logo. Fl_Value_Input diff --git a/test/pixmaps/fltk_animated.gif b/test/images/fltk_animated.gif similarity index 100% rename from test/pixmaps/fltk_animated.gif rename to test/images/fltk_animated.gif diff --git a/test/pixmaps/fltk_animated2.gif b/test/images/fltk_animated2.gif similarity index 100% rename from test/pixmaps/fltk_animated2.gif rename to test/images/fltk_animated2.gif diff --git a/test/pixmaps/fltk_animated3.gif b/test/images/fltk_animated3.gif similarity index 100% rename from test/pixmaps/fltk_animated3.gif rename to test/images/fltk_animated3.gif