summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTavmjong Bah <tavmjong@free.fr>2015-12-08 13:09:52 +0000
committertavmjong-free <tavmjong@free.fr>2015-12-08 13:09:52 +0000
commitf16ffd203a902204895281423322625d86be6144 (patch)
treec2adf94f352a17367c64ef144229203bce07dd78 /src
parentFix incorrect variable type in SPILength constructor. (diff)
downloadinkscape-f16ffd203a902204895281423322625d86be6144.tar.gz
inkscape-f16ffd203a902204895281423322625d86be6144.zip
Fix incorrect variable type in SPILengthOrNormal constructor.
(bzr r14514)
Diffstat (limited to 'src')
-rw-r--r--src/style-internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/style-internal.h b/src/style-internal.h
index 33096f257..767552784 100644
--- a/src/style-internal.h
+++ b/src/style-internal.h
@@ -401,7 +401,7 @@ public:
normal(true)
{}
- SPILengthOrNormal( Glib::ustring const &name, unsigned value = 0 )
+ SPILengthOrNormal( Glib::ustring const &name, float value = 0 )
: SPILength( name, value ),
normal(true)
{}