From b475babf172ec6702af57f514c6fc28bd43159da Mon Sep 17 00:00:00 2001 From: Greg Ercolano Date: Tue, 21 Apr 2009 09:09:37 +0000 Subject: Most test demos converted to use Fl_Double_Window to prevent flicker when new users run test/demo programs. For details, see fltk.development thread started 04/16/09, "Subject: browser demo flicker". git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6772 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- test/clock.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/clock.cxx') diff --git a/test/clock.cxx b/test/clock.cxx index 29317e064..0e9604db3 100644 --- a/test/clock.cxx +++ b/test/clock.cxx @@ -26,16 +26,16 @@ // #include -#include +#include #include #include int main(int argc, char **argv) { - Fl_Window window(220,220,"Fl_Clock"); + Fl_Double_Window window(220,220,"Fl_Clock"); Fl_Clock c1(0,0,220,220); // c1.color(2,1); window.resizable(c1); window.end(); - Fl_Window window2(220,220,"Fl_Round_Clock"); + Fl_Double_Window window2(220,220,"Fl_Round_Clock"); Fl_Round_Clock c2(0,0,220,220); // c2.color(3,4); window2.resizable(c2); window2.end(); -- cgit v1.2.3