From b8725ee37eff33e9e5a0c38e5850444dc5648afe Mon Sep 17 00:00:00 2001 From: Alex Wilson Date: Mon, 12 Sep 2011 08:56:40 -0600 Subject: [PATCH] De-virtualize BLayout::Relayout(). I think this was virtual only by accident. --- headers/os/interface/Layout.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headers/os/interface/Layout.h b/headers/os/interface/Layout.h index be01c08a57..991635e53c 100644 --- a/headers/os/interface/Layout.h +++ b/headers/os/interface/Layout.h @@ -49,7 +49,7 @@ public: // Layouting related methods virtual void InvalidateLayout(bool children = false); - virtual void Relayout(bool immediate = false); + void Relayout(bool immediate = false); void RequireLayout(); bool IsValid(); void EnableLayoutInvalidation();