summaryrefslogtreecommitdiff
path: root/toolkit
diff options
context:
space:
mode:
authorMatteo Casalin <matteo.casalin@yahoo.com>2017-02-05 21:43:59 +0100
committerMatteo Casalin <matteo.casalin@yahoo.com>2017-02-05 21:44:49 +0100
commitc6f32df907983092cdb9f40c7c7ad0552caf41c3 (patch)
tree07771f4954a23254e6880e8d5b837167a429f435 /toolkit
parenteb0b727b8775404b17d45ad6986a902701bc1e31 (diff)
sal_uIntPtr to sal_uInt16
Change-Id: If463ae457f53a0a8b12cc0748afbc654f54ae3c3
Diffstat (limited to 'toolkit')
-rw-r--r--toolkit/source/awt/vclxprinter.cxx2
1 files changed, 1 insertions, 1 deletions
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++ )
{