From 587630c5be304aace571e3141e552dda147eee9c Mon Sep 17 00:00:00 2001 From: KGV <> Date: Thu, 19 May 2011 10:59:08 +0000 Subject: [PATCH] OCC22443 Missing "return" statement in WNT_Window::IsMapped() --- src/WNT/WNT_Window.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/WNT/WNT_Window.cxx b/src/WNT/WNT_Window.cxx index a4bfca0c03..28df3cdf10 100755 --- a/src/WNT/WNT_Window.cxx +++ b/src/WNT/WNT_Window.cxx @@ -462,7 +462,7 @@ void WNT_Window :: Flush () const { //***// Standard_Boolean WNT_Window :: IsMapped () const { if (IsVirtual()) { - Standard_True; + return Standard_True; } WINDOWPLACEMENT wp;