From: KGV <> Date: Thu, 19 May 2011 10:59:08 +0000 (+0000) Subject: OCC22443 Missing "return" statement in WNT_Window::IsMapped() X-Git-Tag: V6_5_1~19 X-Git-Url: http://git.dev.opencascade.org/gitweb/?p=occt.git;a=commitdiff_plain;h=587630c5be304aace571e3141e552dda147eee9c OCC22443 Missing "return" statement in WNT_Window::IsMapped() --- 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;