diff options
| author | Jabier Arraiza <jabier.arraiza@marker.es> | 2018-06-18 20:36:14 +0000 |
|---|---|---|
| committer | Jabier Arraiza <jabier.arraiza@marker.es> | 2018-08-05 00:37:57 +0000 |
| commit | fef6d13a74f00cd79d2cb526687f35a0443fb5b1 (patch) | |
| tree | 955d9568e7347e83c8fb09a01485792a538f499f /src/object/sp-item.cpp | |
| parent | Fixes compiling bugs (diff) | |
| download | inkscape-fef6d13a74f00cd79d2cb526687f35a0443fb5b1.tar.gz inkscape-fef6d13a74f00cd79d2cb526687f35a0443fb5b1.zip | |
coding style fixes
Diffstat (limited to 'src/object/sp-item.cpp')
| -rw-r--r-- | src/object/sp-item.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/object/sp-item.cpp b/src/object/sp-item.cpp index fa281e9ee..0853acc51 100644 --- a/src/object/sp-item.cpp +++ b/src/object/sp-item.cpp @@ -20,13 +20,13 @@ #include <glibmm/i18n.h> +#include "attributes.h" #include "bad-uri-exception.h" -#include "svg/svg.h" -#include "svg/css-ostringstream.h" -#include "print.h" #include "display/drawing-item.h" -#include "attributes.h" #include "document.h" +#include "print.h" +#include "svg/css-ostringstream.h" +#include "svg/svg.h" #include "inkscape.h" #include "desktop.h" @@ -1308,7 +1308,7 @@ void SPItem::adjust_stroke( gdouble ex ) if ( !style->stroke_dasharray.values.empty() ) { for (unsigned i = 0; i < style->stroke_dasharray.values.size(); i++) { - double dash = style->stroke_dasharray.values[i].value * ex; + double dash = style->stroke_dasharray.values[i].value * ex; Inkscape::CSSOStringStream osarray; osarray << dash; style->stroke_dasharray.values[i].read(osarray.str().c_str()); |
