aboutsummaryrefslogtreecommitdiff
path: root/scatterplot.cpp
diff options
context:
space:
mode:
authorSamuel Fadel <samuelfadel@gmail.com>2015-12-16 14:00:08 +0100
committerSamuel Fadel <samuelfadel@gmail.com>2015-12-16 14:02:30 +0100
commita184000e2086c0d86d5aef20d715f5e884a63ff3 (patch)
tree836fcb3363edd0e3d247ed1e99fbdb2f0982909f /scatterplot.cpp
parentf55e5dcfa82b552a1eb6642b093ed42a48565a3a (diff)
Scale & LinearScale are now template classes.
Diffstat (limited to 'scatterplot.cpp')
-rw-r--r--scatterplot.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scatterplot.cpp b/scatterplot.cpp
index d8a7b5e..dd1f266 100644
--- a/scatterplot.cpp
+++ b/scatterplot.cpp
@@ -381,8 +381,8 @@ void Scatterplot::applyManipulation()
{
m_sx.inverse();
m_sy.inverse();
- LinearScale rx = m_sx;
- LinearScale ry = m_sy;
+ LinearScale<float> rx = m_sx;
+ LinearScale<float> ry = m_sy;
m_sy.inverse();
m_sx.inverse();