summaryrefslogtreecommitdiffstats
path: root/generic/tkbltGraphBar.C
diff options
context:
space:
mode:
authorAdrián Medraño Calvo <adrian@medranocalvo.com>2017-07-20 10:55:23 (GMT)
committerAdrián Medraño Calvo <adrian@medranocalvo.com>2017-07-21 11:40:47 (GMT)
commitce7e3c4d7e0368d592f64d3792eeb63837732351 (patch)
treed8e04c92f8d9bc67ec5bee16066936e13faf862a /generic/tkbltGraphBar.C
parent0383f13a9c207f08a063ef44afd151fc40156553 (diff)
downloadblt-ce7e3c4d7e0368d592f64d3792eeb63837732351.zip
blt-ce7e3c4d7e0368d592f64d3792eeb63837732351.tar.gz
blt-ce7e3c4d7e0368d592f64d3792eeb63837732351.tar.bz2
Remove superfluous literal suffixes
Diffstat (limited to 'generic/tkbltGraphBar.C')
-rw-r--r--generic/tkbltGraphBar.C4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkbltGraphBar.C b/generic/tkbltGraphBar.C
index dc8664c..6223270 100644
--- a/generic/tkbltGraphBar.C
+++ b/generic/tkbltGraphBar.C
@@ -239,8 +239,8 @@ int BarGraph::configure()
{
BarGraphOptions* ops = (BarGraphOptions*)ops_;
// Don't allow negative bar widths. Reset to an arbitrary value (0.1)
- if (ops->barWidth <= 0.0f)
- ops->barWidth = 0.9f;
+ if (ops->barWidth <= 0.0)
+ ops->barWidth = 0.9;
return Graph::configure();
}