diff options
Diffstat (limited to 'sc/inc/rowheightcontext.hxx')
-rw-r--r-- | sc/inc/rowheightcontext.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sc/inc/rowheightcontext.hxx b/sc/inc/rowheightcontext.hxx index e105758714b9..95f617e3b811 100644 --- a/sc/inc/rowheightcontext.hxx +++ b/sc/inc/rowheightcontext.hxx @@ -26,8 +26,8 @@ class SC_DLLPUBLIC RowHeightContext double mfPPTX; double mfPPTY; - boost::rational<sal_Int64> maZoomX; - boost::rational<sal_Int64> maZoomY; + boost::rational<long> maZoomX; + boost::rational<long> maZoomY; OutputDevice* mpOutDev; sal_uInt16 mnExtraHeight; @@ -35,15 +35,15 @@ class SC_DLLPUBLIC RowHeightContext public: RowHeightContext( - double fPPTX, double fPPTY, const boost::rational<sal_Int64>& rZoomX, const boost::rational<sal_Int64>& rZoomY, + double fPPTX, double fPPTY, const boost::rational<long>& rZoomX, const boost::rational<long>& rZoomY, OutputDevice* pOutDev ); ~RowHeightContext(); double getPPTX() const { return mfPPTX;} double getPPTY() const { return mfPPTY;} - const boost::rational<sal_Int64>& getZoomX() const { return maZoomX;} - const boost::rational<sal_Int64>& getZoomY() const { return maZoomY;} + const boost::rational<long>& getZoomX() const { return maZoomX;} + const boost::rational<long>& getZoomY() const { return maZoomY;} OutputDevice* getOutputDevice() { return mpOutDev;} |