From 0a010a08a30706bc10ca0f8c83fb0432b205f5ea Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 14 Mar 2017 15:52:04 +0100 Subject: Use int to count to three Change-Id: Ic44c13fb32f4563a776c18a49c408d2a021e55af --- vcl/source/edit/vclmedit.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vcl') diff --git a/vcl/source/edit/vclmedit.cxx b/vcl/source/edit/vclmedit.cxx index b1eb9b47229c..46319e33cfdf 100644 --- a/vcl/source/edit/vclmedit.cxx +++ b/vcl/source/edit/vclmedit.cxx @@ -397,7 +397,7 @@ void ImpVclMEdit::SetMaxTextWidth( sal_uLong nMaxWidth ) void ImpVclMEdit::Resize() { - size_t nIteration = 1; + int nIteration = 1; do { WinBits nWinStyle( pVclMultiLineEdit->GetStyle() ); -- cgit