Kaydet (Commit) ffd55ff0 authored tarafından Chris Sherlock's avatar Chris Sherlock

VCL: OutputDevice::ImplRotatePosi, nOrientation param. should be short

Change-Id: Ie49b5b2c489619700f9cc34d9efb38454bcaff2c
üst 248abe0a
...@@ -434,7 +434,7 @@ public: ...@@ -434,7 +434,7 @@ public:
private: private:
void ImplRotatePos( long nOriginX, long nOriginY, long& rX, long &rY, void ImplRotatePos( long nOriginX, long nOriginY, long& rX, long &rY,
int nOrientation ); short nOrientation ) const;
///@} ///@}
/** @name OutputDevice state functions /** @name OutputDevice state functions
......
...@@ -438,7 +438,7 @@ bool OutputDevice::supportsOperation( OutDevSupportType eType ) const ...@@ -438,7 +438,7 @@ bool OutputDevice::supportsOperation( OutDevSupportType eType ) const
} }
void OutputDevice::ImplRotatePos( long nOriginX, long nOriginY, long& rX, long& rY, void OutputDevice::ImplRotatePos( long nOriginX, long nOriginY, long& rX, long& rY,
int nOrientation ) short nOrientation ) const
{ {
if ( (nOrientation >= 0) && !(nOrientation % 900) ) if ( (nOrientation >= 0) && !(nOrientation % 900) )
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment