diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-06-10 12:49:33 +0200 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-06-10 14:03:34 +0200 |
commit | 43135665bf9093c52f424069bcf83d50a93bdc0c (patch) | |
tree | 079359e37353f3a936656a9d3aeff2e3577cc353 /include | |
parent | 378b2522b40004ca5f5b6de0b4eda0ac13d4153d (diff) |
mingw64: use integers able to contain a size in svtools
Change-Id: Id5505f75a2331be682b74d085a7959fc4bf07df8
Diffstat (limited to 'include')
-rw-r--r-- | include/svtools/ctrltool.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/svtools/ctrltool.hxx b/include/svtools/ctrltool.hxx index efe7b53b7cb3..66de4f8b23be 100644 --- a/include/svtools/ctrltool.hxx +++ b/include/svtools/ctrltool.hxx @@ -121,7 +121,7 @@ FontList::GetStyleName() -------------------------------------------------------------------------- -const long* FontList::GetSizeAry( const FontInfo& rInfo ) const; +const sal_IntPtr* FontList::GetSizeAry( const FontInfo& rInfo ) const; Diese Methode liefert zum uebergebenen Font die vorhandenen Groessen. Falls es sich dabei um einen skalierbaren Font handelt, werden Standard- @@ -158,7 +158,7 @@ private: OUString maBoldItalic; OUString maBlack; OUString maBlackItalic; - long* mpSizeAry; + sal_IntPtr* mpSizeAry; OutputDevice* mpDev; OutputDevice* mpDev2; boost::ptr_vector<ImplFontListNameInfo> maEntries; @@ -203,8 +203,8 @@ public: sal_Handle GetNextFontInfo( sal_Handle hFontInfo ) const; const FontInfo& GetFontInfo( sal_Handle hFontInfo ) const; - const long* GetSizeAry( const FontInfo& rInfo ) const; - static const long* GetStdSizeAry(); + const sal_IntPtr* GetSizeAry( const FontInfo& rInfo ) const; + static const sal_IntPtr* GetStdSizeAry(); private: FontList( const FontList& ); |