From ab5771b62fbff2510ff495ba6dd2fcd8d1720593 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Wed, 13 Jan 1999 15:45:50 +0000 Subject: Fixes from Bill: - Fl_Clock now uses the Fl_Clock_Output base class to get the system time. - Fl_Window::iconize() and Fl_Window::icon() now coexist peacefully with all X window managers. - Minor fixes to mandelbrot and shape demos. - Menu code cleanup. git-svn-id: file:///fltk/svn/fltk/trunk@209 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/Fl_Window.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/Fl_Window.cxx') diff --git a/src/Fl_Window.cxx b/src/Fl_Window.cxx index 9119ba59b..54097cddb 100644 --- a/src/Fl_Window.cxx +++ b/src/Fl_Window.cxx @@ -1,5 +1,5 @@ // -// "$Id: Fl_Window.cxx,v 1.5 1999/01/07 19:17:29 mike Exp $" +// "$Id: Fl_Window.cxx,v 1.6 1999/01/13 15:45:49 mike Exp $" // // Window widget class for the Fast Light Tool Kit (FLTK). // @@ -59,7 +59,7 @@ Fl_Window::Fl_Window(int W, int H, const char *l) Fl_Window *Fl_Widget::window() const { for (Fl_Widget *o = parent(); o; o = o->parent()) - if (o->type()>=FL_WINDOW) return (Fl_Window*)o; + if (o->type() >= FL_WINDOW) return (Fl_Window*)o; return 0; } @@ -102,5 +102,5 @@ void Fl_Window::default_callback(Fl_Window* window, void* v) { } // -// End of "$Id: Fl_Window.cxx,v 1.5 1999/01/07 19:17:29 mike Exp $". +// End of "$Id: Fl_Window.cxx,v 1.6 1999/01/13 15:45:49 mike Exp $". // -- cgit v1.2.3