From c6f32df907983092cdb9f40c7c7ad0552caf41c3 Mon Sep 17 00:00:00 2001 From: Matteo Casalin Date: Sun, 5 Feb 2017 21:43:59 +0100 Subject: sal_uIntPtr to sal_uInt16 Change-Id: If463ae457f53a0a8b12cc0748afbc654f54ae3c3 --- toolkit/source/awt/vclxprinter.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toolkit') diff --git a/toolkit/source/awt/vclxprinter.cxx b/toolkit/source/awt/vclxprinter.cxx index e3e95bfa4b18..d89c32d975e7 100644 --- a/toolkit/source/awt/vclxprinter.cxx +++ b/toolkit/source/awt/vclxprinter.cxx @@ -211,7 +211,7 @@ css::uno::Sequence< OUString > VCLXPrinterPropertySet::getFormDescriptions( ) { ::osl::MutexGuard aGuard( Mutex ); - sal_uInt16 nPaperBinCount = GetPrinter()->GetPaperBinCount(); + const sal_uInt16 nPaperBinCount = GetPrinter()->GetPaperBinCount(); css::uno::Sequence< OUString > aDescriptions( nPaperBinCount ); for ( sal_uInt16 n = 0; n < nPaperBinCount; n++ ) { -- cgit