From 2f002e3a49da3fb797d564864acb34f6dc61f9de Mon Sep 17 00:00:00 2001 From: Caolán McNamara <caolanm@redhat.com> 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 --- svx/source/dialog/docrecovery.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'svx/source/dialog/docrecovery.cxx') diff --git a/svx/source/dialog/docrecovery.cxx b/svx/source/dialog/docrecovery.cxx index 4c6cf8413ed8..59126ffc1643 100644 --- a/svx/source/dialog/docrecovery.cxx +++ b/svx/source/dialog/docrecovery.cxx @@ -631,7 +631,7 @@ PluginProgressWindow::PluginProgressWindow( Window* Show(); Size aParentSize = pParent->GetSizePixel(); // align the progressbar to its parent - SetPosSizePixel( -9, 0, aParentSize.Width() + 15, aParentSize.Height() - 4 ); + setPosSizePixel( -9, 0, aParentSize.Width() + 15, aParentSize.Height() - 4 ); } //=============================================== -- cgit