summaryrefslogtreecommitdiffstats
path: root/src/style-internal.h
diff options
context:
space:
mode:
authorTavmjong Bah <tavmjong@free.fr>2015-12-08 12:56:49 +0000
committertavmjong-free <tavmjong@free.fr>2015-12-08 12:56:49 +0000
commit98a465905236cf97e2b3d163ff3df4ee43635038 (patch)
treecf04afc783df3e5dc1737df59359696a89ee1626 /src/style-internal.h
parentmerge lp:~inkscape.dev/inkscape/lock_guides (diff)
downloadinkscape-98a465905236cf97e2b3d163ff3df4ee43635038.tar.gz
inkscape-98a465905236cf97e2b3d163ff3df4ee43635038.zip
Fix incorrect variable type in SPILength constructor.
(bzr r14513)
Diffstat (limited to '')
-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 889292454..33096f257 100644
--- a/src/style-internal.h
+++ b/src/style-internal.h
@@ -342,7 +342,7 @@ public:
computed(0)
{}
- SPILength( Glib::ustring const &name, unsigned value = 0 )
+ SPILength( Glib::ustring const &name, float value = 0 )
: SPIBase( name ),
unit(SP_CSS_UNIT_NONE),
value(value),