summaryrefslogtreecommitdiff
path: root/unotools
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-05-06 11:40:38 +0200
committerNoel Grandin <noel@peralex.com>2015-05-06 11:41:32 +0200
commit0a825b9aae390dc426261e873ffbacc867814e53 (patch)
treeed1d05e3ff74ecda4e5913e02238838418196b52 /unotools
parent776d74bb557e243c3aefe868dd5367a2a065ee06 (diff)
fix windows build
warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) after my commit 60e659ae355d073b05b3b9c8d2ac3bdc5f76020d "convert IMPL_FONT_ATTR constants to scoped enum" Change-Id: I83f1ea5869fa60c89dbc706020f68cc2c4277f48
Diffstat (limited to 'unotools')
-rw-r--r--unotools/source/config/fontcfg.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/unotools/source/config/fontcfg.cxx b/unotools/source/config/fontcfg.cxx
index 967794e584fb..8053d9513d4c 100644
--- a/unotools/source/config/fontcfg.cxx
+++ b/unotools/source/config/fontcfg.cxx
@@ -988,7 +988,7 @@ FontWidth FontSubstConfiguration::getSubstWidth( const com::sun::star::uno::Refe
ImplFontAttrs FontSubstConfiguration::getSubstType( const com::sun::star::uno::Reference< XNameAccess >& rFont,
const OUString& rType ) const
{
- sal_uLong type = 0;
+ unsigned long type = 0;
try
{
Any aAny = rFont->getByName( rType );