diff options
Diffstat (limited to 'svx/source/engine3d/viewpt3d2.cxx')
-rw-r--r-- | svx/source/engine3d/viewpt3d2.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/svx/source/engine3d/viewpt3d2.cxx b/svx/source/engine3d/viewpt3d2.cxx index ce5ffd7ba90e..bbfe84fafbf2 100644 --- a/svx/source/engine3d/viewpt3d2.cxx +++ b/svx/source/engine3d/viewpt3d2.cxx @@ -185,7 +185,7 @@ void Viewport3D::MakeTransform(void) aViewTf *= aTemp; } - bTfValid = TRUE; + bTfValid = sal_True; } } @@ -313,7 +313,7 @@ basegfx::B3DPoint Viewport3D::MapToDevice(const basegfx::B3DPoint& rVec) const void Viewport3D::SetVRP(const basegfx::B3DPoint& rNewVRP) { aVRP = rNewVRP; - bTfValid = FALSE; + bTfValid = sal_False; } /************************************************************************* @@ -326,7 +326,7 @@ void Viewport3D::SetVPN(const basegfx::B3DVector& rNewVPN) { aVPN = rNewVPN; aVPN.normalize(); - bTfValid = FALSE; + bTfValid = sal_False; } /************************************************************************* @@ -338,7 +338,7 @@ void Viewport3D::SetVPN(const basegfx::B3DVector& rNewVPN) void Viewport3D::SetVUV(const basegfx::B3DVector& rNewVUV) { aVUV = rNewVUV; - bTfValid = FALSE; + bTfValid = sal_False; } /************************************************************************* @@ -352,7 +352,7 @@ void Viewport3D::SetPRP(const basegfx::B3DPoint& rNewPRP) aPRP = rNewPRP; aPRP.setX(0.0); aPRP.setY(0.0); - bTfValid = FALSE; + bTfValid = sal_False; } /************************************************************************* @@ -364,7 +364,7 @@ void Viewport3D::SetPRP(const basegfx::B3DPoint& rNewPRP) void Viewport3D::SetVPD(double fNewVPD) { fVPD = fNewVPD; - bTfValid = FALSE; + bTfValid = sal_False; } /************************************************************************* @@ -376,7 +376,7 @@ void Viewport3D::SetVPD(double fNewVPD) void Viewport3D::SetNearClipDist(double fNewNCD) { fNearClipDist = fNewNCD; - bTfValid = FALSE; + bTfValid = sal_False; } /************************************************************************* @@ -388,7 +388,7 @@ void Viewport3D::SetNearClipDist(double fNewNCD) void Viewport3D::SetFarClipDist(double fNewFCD) { fFarClipDist = fNewFCD; - bTfValid = FALSE; + bTfValid = sal_False; } // eof |