diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2015-12-26 07:18:20 +1100 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2015-12-26 13:21:30 +0000 |
commit | 0a9503ed688e258cee5407061a1406d11eb7c258 (patch) | |
tree | a266bee105283cfa933231c4bf3103d8d4366e37 /vcl/inc | |
parent | 7041701edc6274eaa9df4dae970452131f76e433 (diff) |
vcl: change device font size variable/fn names
Change-Id: I389b5a5a220d1a23bcf53156c6fc791d756a740c
Reviewed-on: https://gerrit.libreoffice.org/20944
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Chris Sherlock <chris.sherlock79@gmail.com>
Diffstat (limited to 'vcl/inc')
-rw-r--r-- | vcl/inc/PhysicalFontCollection.hxx | 2 | ||||
-rw-r--r-- | vcl/inc/outdev.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/vcl/inc/PhysicalFontCollection.hxx b/vcl/inc/PhysicalFontCollection.hxx index 5177d4ab6c67..44956731e267 100644 --- a/vcl/inc/PhysicalFontCollection.hxx +++ b/vcl/inc/PhysicalFontCollection.hxx @@ -63,7 +63,7 @@ public: // misc utilities PhysicalFontCollection* Clone( bool bScalable, bool bEmbeddable ) const; ImplDeviceFontList* GetDeviceFontList() const; - ImplGetDevSizeList* GetDeviceSizeList( const OUString& rFontName ) const; + ImplDeviceFontSizeList* GetDeviceFontSizeList( const OUString& rFontName ) const; private: mutable bool mbMatchData; // true if matching attributes are initialized diff --git a/vcl/inc/outdev.h b/vcl/inc/outdev.h index 90fad99fd40e..5814b7c449e9 100644 --- a/vcl/inc/outdev.h +++ b/vcl/inc/outdev.h @@ -50,13 +50,13 @@ public: int Count() const { return maDevFontVector.size(); } }; -class ImplGetDevSizeList +class ImplDeviceFontSizeList { private: std::vector<int> maSizeList; public: - ImplGetDevSizeList() + ImplDeviceFontSizeList() { maSizeList.reserve( 32 ); } void Add( int nHeight ) { maSizeList.push_back( nHeight ); } int Count() const { return maSizeList.size(); } |