diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-01-12 16:06:03 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-01-12 20:58:02 +0000 |
commit | 35dac7a55eeccb9e2362c0a542e011d76b17a32f (patch) | |
tree | 364ee0c3cbac801bf9a2a72341ef3cd96c5ff8f4 | |
parent | 42a9b2399e6bbe4f29347da9933b02dd2d9ad1ca (diff) |
these members are private now, use accessors
Change-Id: I397a6e5c8585cbc37ec8f28ab6b05914976e163f
-rw-r--r-- | vcl/generic/fontmanager/fontsubst.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/vcl/generic/fontmanager/fontsubst.cxx b/vcl/generic/fontmanager/fontsubst.cxx index a026ee95e28d..73d1d3a2512a 100644 --- a/vcl/generic/fontmanager/fontsubst.cxx +++ b/vcl/generic/fontmanager/fontsubst.cxx @@ -199,13 +199,13 @@ bool FcPreMatchSubstititution::FindFontSubstitute( FontSelectPattern &rFontSelDa const rtl::OString aSubstName(rtl::OUStringToOString(aOut.maSearchName, RTL_TEXTENCODING_UTF8)); printf( "FcPreMatchSubstititution \"%s\" bipw=%d%d%d%d -> ", - aOrigName.getStr(), rFontSelData.meWeight, rFontSelData.meItalic, - rFontSelData.mePitch, rFontSelData.meWidthType ); + aOrigName.getStr(), rFontSelData.GetWeight(), rFontSelData.GetSlant(), + rFontSelData.GetPitch(), rFontSelData.GetWidthType() ); if( !bHaveSubstitute ) printf( "no substitute available\n" ); else printf( "\"%s\" bipw=%d%d%d%d\n", aSubstName.getStr(), - aOut.meWeight, aOut.meItalic, aOut.mePitch, aOut.meWidthType ); + aOut.GetWeight(), aOut.GetSlant(), aOut.GetPitch(), aOut.GetWidthType() ); #endif if( bHaveSubstitute ) @@ -250,13 +250,13 @@ bool FcGlyphFallbackSubstititution::FindFontSubstitute( FontSelectPattern& rFont const rtl::OString aSubstName(rtl::OUStringToOString(aOut.maSearchName, RTL_TEXTENCODING_UTF8)); printf( "FcGFSubstititution \"%s\" bipw=%d%d%d%d ->", - aOrigName.getStr(), rFontSelData.meWeight, rFontSelData.meItalic, - rFontSelData.mePitch, rFontSelData.meWidthType ); + aOrigName.getStr(), rFontSelData.GetWeight(), rFontSelData.GetSlant(), + rFontSelData.GetPitch(), rFontSelData.GetWidthType() ); if( !bHaveSubstitute ) printf( "no substitute available\n" ); else printf( "\"%s\" bipw=%d%d%d%d\n", aSubstName.getStr(), - aOut.meWeight, aOut.meItalic, aOut.mePitch, aOut.meWidthType ); + aOut.GetWeight(), aOut.GetSlant(), aOut.GetPitch(), aOut.GetWidthType() ); #endif if( bHaveSubstitute ) |