From 2f002e3a49da3fb797d564864acb34f6dc61f9de Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Fri, 24 Aug 2012 12:34:22 +0100 Subject: having two SetPosSizePixel is a blasted nuisance Lets rename the multiargument SetPosSizePixel to setPosSizePixel drop the various using Window::SetPosSizePixel and work towards de-virtualizing SetPosSizePixel/SetPosPixel and SetSizePixel and doing the work in a virtual setPosSizePixel Change-Id: I7057654168001b67becee1791e97f9e9dc01f7b8 --- framework/source/helper/vclstatusindicator.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'framework') diff --git a/framework/source/helper/vclstatusindicator.cxx b/framework/source/helper/vclstatusindicator.cxx index 412eb5137a2b..ea4e5eeff60e 100644 --- a/framework/source/helper/vclstatusindicator.cxx +++ b/framework/source/helper/vclstatusindicator.cxx @@ -209,7 +209,7 @@ void VCLStatusIndicator::impl_recalcLayout(Window* pStatusBar , return; Size aParentSize = pParentWindow->GetSizePixel(); - pStatusBar->SetPosSizePixel(0, + pStatusBar->setPosSizePixel(0, 0, aParentSize.Width(), aParentSize.Height()); -- cgit