From 0edbf96bf66bf5b9d6ae5d6b53e5609d2e08a2f3 Mon Sep 17 00:00:00 2001 From: bitplane Date: Thu, 12 Jul 2007 16:47:25 +0000 Subject: [PATCH] missed a semicolon in a do while loop .. oops git-svn-id: http://svn.code.sf.net/p/irrlicht/code/trunk@781 dfc29bdd-3216-0410-991c-e03cc46cb475 --- include/IGUIElement.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/IGUIElement.h b/include/IGUIElement.h index 6e0dd1d1..0d1b829a 100644 --- a/include/IGUIElement.h +++ b/include/IGUIElement.h @@ -680,7 +680,7 @@ public: if (child->Parent) child = child->Parent; - } while (child->Parent && child != this) + } while (child->Parent && child != this); _IRR_IMPLEMENT_MANAGED_MARSHALLING_BUGFIX; return child == this;