diff options
| author | Tavmjong Bah <tavmjong@free.fr> | 2015-12-08 12:56:49 +0000 |
|---|---|---|
| committer | tavmjong-free <tavmjong@free.fr> | 2015-12-08 12:56:49 +0000 |
| commit | 98a465905236cf97e2b3d163ff3df4ee43635038 (patch) | |
| tree | cf04afc783df3e5dc1737df59359696a89ee1626 /src/style-internal.h | |
| parent | merge lp:~inkscape.dev/inkscape/lock_guides (diff) | |
| download | inkscape-98a465905236cf97e2b3d163ff3df4ee43635038.tar.gz inkscape-98a465905236cf97e2b3d163ff3df4ee43635038.zip | |
Fix incorrect variable type in SPILength constructor.
(bzr r14513)
Diffstat (limited to '')
| -rw-r--r-- | src/style-internal.h | 2 |
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), |
