summaryrefslogtreecommitdiff
path: root/include/vcl/mapmod.hxx
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2014-10-16 15:30:32 +0200
committerDavid Tardon <dtardon@redhat.com>2014-10-16 17:44:44 +0200
commit582ef22d3e8e30ffd58f092d37ffda30bd07bd9e (patch)
tree80c42b34da7e7ee05843b572f7311b3c230de9dd /include/vcl/mapmod.hxx
parentada4862afc3227b04c12960ded761db24f61257e (diff)
fdo#84854 it seems long is not enough on 32 bit
Fraction used BigInt internally for computations, rational does nothing like that. Change-Id: I3e9b25074f979bc291208f7c6362c3c40eb77ff5
Diffstat (limited to 'include/vcl/mapmod.hxx')
-rw-r--r--include/vcl/mapmod.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/vcl/mapmod.hxx b/include/vcl/mapmod.hxx
index 211727f39660..e86c96f23573 100644
--- a/include/vcl/mapmod.hxx
+++ b/include/vcl/mapmod.hxx
@@ -44,8 +44,8 @@ private:
sal_uLong mnRefCount;
MapUnit meUnit;
Point maOrigin;
- boost::rational<long> maScaleX;
- boost::rational<long> maScaleY;
+ boost::rational<sal_Int64> maScaleX;
+ boost::rational<sal_Int64> maScaleY;
bool mbSimple;
friend SvStream& ReadImplMapMode( SvStream& rIStm, ImplMapMode& rMapMode );
@@ -75,7 +75,7 @@ public:
MapMode( const MapMode& rMapMode );
MapMode( MapUnit eUnit );
MapMode( MapUnit eUnit, const Point& rLogicOrg,
- const boost::rational<long>& rScaleX, const boost::rational<long>& rScaleY );
+ const boost::rational<sal_Int64>& rScaleX, const boost::rational<sal_Int64>& rScaleY );
~MapMode();
void SetMapUnit( MapUnit eUnit );
@@ -86,11 +86,11 @@ public:
const Point& GetOrigin() const
{ return mpImplMapMode->maOrigin; }
- void SetScaleX( const boost::rational<long>& rScaleX );
- const boost::rational<long>& GetScaleX() const
+ void SetScaleX( const boost::rational<sal_Int64>& rScaleX );
+ const boost::rational<sal_Int64>& GetScaleX() const
{ return mpImplMapMode->maScaleX; }
- void SetScaleY( const boost::rational<long>& rScaleY );
- const boost::rational<long>& GetScaleY() const
+ void SetScaleY( const boost::rational<sal_Int64>& rScaleY );
+ const boost::rational<sal_Int64>& GetScaleY() const
{ return mpImplMapMode->maScaleY; }
MapMode& operator=( const MapMode& rMapMode );