From 830f44b1ca0e121d3e27a031054313e3f194ab1d Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Mon, 14 Jan 2013 10:40:11 +0000 Subject: we only ever want the preferred window size from GetOptimalSize so remove the MAX and MIN options and simplify the whole lot Change-Id: Iaaf350c37e01f7fce434af760bcddb9b7d7135ea --- toolkit/source/awt/vclxwindow.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toolkit') diff --git a/toolkit/source/awt/vclxwindow.cxx b/toolkit/source/awt/vclxwindow.cxx index 5609ea7e16bc..b97a6bd00e81 100644 --- a/toolkit/source/awt/vclxwindow.cxx +++ b/toolkit/source/awt/vclxwindow.cxx @@ -2194,7 +2194,7 @@ void VCLXWindow::setProperty( const ::rtl::OUString& PropertyName, const ::com:: case WINDOW_SCROLLBARBOX: return VCLXScrollBar::implGetMinimumSize( GetWindow() ); default: - aSz = GetWindow()->GetOptimalSize( WINDOWSIZE_MINIMUM ); + aSz = GetWindow()->GetOptimalSize(); } } -- cgit