summaryrefslogtreecommitdiffstats
path: root/drawinglayer/source/tools/wmfemfhelper.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2018-01-12 20:25:28 +0100
committerStephan Bergmann <sbergman@redhat.com>2018-01-12 20:25:28 +0100
commit6e8765b161a1c839fd303eecbd4ddd56f85b86ac (patch)
treefe2114c84b7721ad9bef873d6678435391391d3f /drawinglayer/source/tools/wmfemfhelper.cxx
parentMore loplugin:cstylecast: editeng (diff)
downloadcore-6e8765b161a1c839fd303eecbd4ddd56f85b86ac.tar.gz
core-6e8765b161a1c839fd303eecbd4ddd56f85b86ac.zip
More loplugin:cstylecast: drawinglayer
auto-rewrite with <https://gerrit.libreoffice.org/#/c/47798/> "Enable loplugin:cstylecast for some more cases" plus solenv/clang-format/reformat-formatted-files Change-Id: I38baea4d1dd354e48eb90fc2fc385ef60485b5e3
Diffstat (limited to 'drawinglayer/source/tools/wmfemfhelper.cxx')
-rw-r--r--drawinglayer/source/tools/wmfemfhelper.cxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/drawinglayer/source/tools/wmfemfhelper.cxx b/drawinglayer/source/tools/wmfemfhelper.cxx
index c3a1b4508abd..1f4762472996 100644
--- a/drawinglayer/source/tools/wmfemfhelper.cxx
+++ b/drawinglayer/source/tools/wmfemfhelper.cxx
@@ -686,7 +686,7 @@ namespace wmfemfhelper
if(nStartIntens != 100)
{
const basegfx::BColor aBlack;
- aStart = interpolate(aBlack, aStart, (double)nStartIntens * 0.01);
+ aStart = interpolate(aBlack, aStart, static_cast<double>(nStartIntens) * 0.01);
}
const Color aEndColor(rGradient.GetEndColor());
@@ -696,7 +696,7 @@ namespace wmfemfhelper
if(nEndIntens != 100)
{
const basegfx::BColor aBlack;
- aEnd = interpolate(aBlack, aEnd, (double)nEndIntens * 0.01);
+ aEnd = interpolate(aBlack, aEnd, static_cast<double>(nEndIntens) * 0.01);
}
drawinglayer::attribute::GradientStyle aGradientStyle(drawinglayer::attribute::GradientStyle::Rect);
@@ -737,10 +737,10 @@ namespace wmfemfhelper
return drawinglayer::attribute::FillGradientAttribute(
aGradientStyle,
- (double)rGradient.GetBorder() * 0.01,
- (double)rGradient.GetOfsX() * 0.01,
- (double)rGradient.GetOfsY() * 0.01,
- (double)rGradient.GetAngle() * F_PI1800,
+ static_cast<double>(rGradient.GetBorder()) * 0.01,
+ static_cast<double>(rGradient.GetOfsX()) * 0.01,
+ static_cast<double>(rGradient.GetOfsY()) * 0.01,
+ static_cast<double>(rGradient.GetAngle()) * F_PI1800,
aStart,
aEnd,
rGradient.GetSteps());
@@ -774,8 +774,8 @@ namespace wmfemfhelper
return drawinglayer::attribute::FillHatchAttribute(
aHatchStyle,
- (double)rHatch.GetDistance(),
- (double)rHatch.GetAngle() * F_PI1800,
+ static_cast<double>(rHatch.GetDistance()),
+ static_cast<double>(rHatch.GetAngle()) * F_PI1800,
rHatch.GetColor().getBColor(),
3, // same default as VCL, a minimum of three discrete units (pixels) offset
false);
@@ -1310,7 +1310,7 @@ namespace wmfemfhelper
TargetHolder& rTarget,
PropertyHolder const & rProperty)
{
- const double fLineWidth(fabs((double)rAction.GetWidth()));
+ const double fLineWidth(fabs(static_cast<double>(rAction.GetWidth())));
if(fLineWidth > 0.0)
{
@@ -1848,7 +1848,7 @@ namespace wmfemfhelper
for(sal_uInt32 a(0); a < nTextLength; a++)
{
- aDXArray.push_back((double)(*(pDXArray + a)));
+ aDXArray.push_back(static_cast<double>(*(pDXArray + a)));
}
}