diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-04-27 19:01:16 +1000 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-04-27 20:53:29 +1000 |
commit | ffd55ff0b919a982f54db558b2341309bbabf0b9 (patch) | |
tree | 718d187ded4e645f375ace21b351964de72c8d24 /vcl/source | |
parent | 248abe0afa92e295aa5b19579dff3fb2fb3cfbe5 (diff) |
VCL: OutputDevice::ImplRotatePosi, nOrientation param. should be short
Change-Id: Ie49b5b2c489619700f9cc34d9efb38454bcaff2c
Diffstat (limited to 'vcl/source')
-rw-r--r-- | vcl/source/outdev/outdev.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/outdev/outdev.cxx b/vcl/source/outdev/outdev.cxx index 9fab8b434e20..5100c631f3ab 100644 --- a/vcl/source/outdev/outdev.cxx +++ b/vcl/source/outdev/outdev.cxx @@ -438,7 +438,7 @@ bool OutputDevice::supportsOperation( OutDevSupportType eType ) const } void OutputDevice::ImplRotatePos( long nOriginX, long nOriginY, long& rX, long& rY, - int nOrientation ) + short nOrientation ) const { if ( (nOrientation >= 0) && !(nOrientation % 900) ) { |