diff options
author | slideon <adamkasztenny@gmail.com> | 2016-03-29 18:32:18 -0400 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-03-30 06:41:47 +0000 |
commit | 7b3dbf6cd1bad9a1cc94221952ac6cc54280b7d2 (patch) | |
tree | 5976c4c74100edcf2bf62aa43f53662b916b475e /vcl | |
parent | bf7aabd53c4308e93a5507d039cf10bb7362e3f4 (diff) |
tdf#96099 Remove trivial typedefs from vcl module
This typedef was not needed.
Change-Id: I442068a3e394a23551655294dc8f1765bc8f2887
Reviewed-on: https://gerrit.libreoffice.org/23618
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/fontsubset/gsub.cxx | 9 | ||||
-rw-r--r-- | vcl/unx/generic/glyphs/freetype_glyphcache.cxx | 9 |
2 files changed, 8 insertions, 10 deletions
diff --git a/vcl/source/fontsubset/gsub.cxx b/vcl/source/fontsubset/gsub.cxx index d9971fe933b6..6ef40f209eff 100644 --- a/vcl/source/fontsubset/gsub.cxx +++ b/vcl/source/fontsubset/gsub.cxx @@ -77,8 +77,7 @@ bool ReadGSUB( struct TrueTypeFont* pTTFile, aReqFeatureTagList.push_back( MKTAG("vert") ); - typedef std::vector<sal_uInt16> UshortList; - UshortList aFeatureIndexList; + std::vector<sal_uInt16> aFeatureIndexList; // parse Script Table const FT_Byte* pScriptHeader = pGsubBase + nOfsScriptList; @@ -150,8 +149,8 @@ bool ReadGSUB( struct TrueTypeFont* pTTFile, if( aFeatureIndexList.empty() ) return true; - UshortList aLookupIndexList; - UshortList aLookupOffsetList; + std::vector<sal_uInt16> aLookupIndexList; + std::vector<sal_uInt16> aLookupOffsetList; // parse Feature Table const FT_Byte* pFeatureHeader = pGsubBase + nOfsFeatureTable; @@ -205,7 +204,7 @@ bool ReadGSUB( struct TrueTypeFont* pTTFile, aLookupOffsetList.push_back( nOffset ); } - UshortList::const_iterator it = aLookupOffsetList.begin(); + std::vector<sal_uInt16>::const_iterator it = aLookupOffsetList.begin(); for(; it != aLookupOffsetList.end(); ++it ) { const sal_uInt16 nOfsLookupTable = *it; diff --git a/vcl/unx/generic/glyphs/freetype_glyphcache.cxx b/vcl/unx/generic/glyphs/freetype_glyphcache.cxx index e25a2e0d31f7..0a1024788754 100644 --- a/vcl/unx/generic/glyphs/freetype_glyphcache.cxx +++ b/vcl/unx/generic/glyphs/freetype_glyphcache.cxx @@ -1329,8 +1329,7 @@ void ServerFont::ApplyGSUB( const FontSelectPattern& rFSD ) const sal_uInt16 nOfsFeatureTable = GetUShort( pGsubHeader+6 ); const sal_uInt16 nOfsLookupList = GetUShort( pGsubHeader+8 ); - typedef std::vector<sal_uInt16> UshortList; - UshortList aFeatureIndexList; + std::vector<sal_uInt16> aFeatureIndexList; // parse Script Table const FT_Byte* pScriptHeader = pGsubBase + nOfsScriptList; @@ -1386,8 +1385,8 @@ void ServerFont::ApplyGSUB( const FontSelectPattern& rFSD ) if( aFeatureIndexList.empty() ) return; - UshortList aLookupIndexList; - UshortList aLookupOffsetList; + std::vector<sal_uInt16> aLookupIndexList; + std::vector<sal_uInt16> aLookupOffsetList; // parse Feature Table const FT_Byte* pFeatureHeader = pGsubBase + nOfsFeatureTable; @@ -1436,7 +1435,7 @@ void ServerFont::ApplyGSUB( const FontSelectPattern& rFSD ) aLookupOffsetList.push_back( nOffset ); } - UshortList::const_iterator lookup_it = aLookupOffsetList.begin(); + std::vector<sal_uInt16>::const_iterator lookup_it = aLookupOffsetList.begin(); for(; lookup_it != aLookupOffsetList.end(); ++lookup_it ) { const sal_uInt16 nOfsLookupTable = *lookup_it; |