From 291faee430b13248a1b97e1ef254b9a468a67ad1 Mon Sep 17 00:00:00 2001 From: Matthias Melcher Date: Thu, 28 Oct 2010 18:02:20 +0000 Subject: Fixed a bunch of warnings from gcc 4.4.5 . Most of these are parenthesis missing to make the precedence of && over || obvious. Ah well, why not... git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7765 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/Fl.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Fl.cxx') diff --git a/src/Fl.cxx b/src/Fl.cxx index 55dedea96..c2e0c3eaf 100644 --- a/src/Fl.cxx +++ b/src/Fl.cxx @@ -986,7 +986,7 @@ int Fl::handle(int e, Fl_Window* window) switch (e) { case FL_CLOSE: - if (grab() || modal() && window != modal()) return 0; + if ( grab() || (modal() && window != modal()) ) return 0; wi->do_callback(); return 1; -- cgit v1.2.3