diff options
| author | Tavmjong Bah <tavmjong@free.fr> | 2018-01-30 08:33:01 +0000 |
|---|---|---|
| committer | Tavmjong Bah <tavmjong@free.fr> | 2018-01-30 08:33:01 +0000 |
| commit | 267299811df952d08324a39008f52c19641de9e0 (patch) | |
| tree | 28fef736a52cb7a72119d119be8eb663ad20a77f /src/desktop-style.cpp | |
| parent | Translations: update inkscape.pot (diff) | |
| download | inkscape-267299811df952d08324a39008f52c19641de9e0.tar.gz inkscape-267299811df952d08324a39008f52c19641de9e0.zip | |
Move classes derived from SPObject to own directory.
A lot of header clean-up.
Diffstat (limited to 'src/desktop-style.cpp')
| -rw-r--r-- | src/desktop-style.cpp | 46 |
1 files changed, 26 insertions, 20 deletions
diff --git a/src/desktop-style.cpp b/src/desktop-style.cpp index 23f803d6a..3b80d0e9e 100644 --- a/src/desktop-style.cpp +++ b/src/desktop-style.cpp @@ -14,33 +14,39 @@ #include <string> #include <cstring> + #include <glibmm.h> -#include "desktop.h" +#include "desktop-style.h" + #include "color-rgba.h" -#include "svg/css-ostringstream.h" -#include "svg/svg.h" -#include "svg/svg-color.h" -#include "selection.h" +#include "desktop.h" #include "inkscape.h" +#include "selection.h" + +#include "object/box3d-side.h" +#include "object/sp-flowdiv.h" +#include "object/sp-flowregion.h" +#include "object/sp-flowtext.h" +#include "object/sp-linear-gradient.h" +#include "object/sp-path.h" +#include "object/sp-pattern.h" +#include "object/sp-radial-gradient.h" +#include "object/sp-textpath.h" +#include "object/sp-tref.h" +#include "object/sp-tspan.h" +#include "object/sp-use.h" #include "style.h" -#include "filters/blend.h" -#include "filters/gaussian-blur.h" -#include "sp-flowtext.h" -#include "sp-flowregion.h" -#include "sp-flowdiv.h" -#include "sp-linear-gradient.h" -#include "sp-pattern.h" -#include "sp-radial-gradient.h" -#include "sp-textpath.h" -#include "sp-tref.h" -#include "sp-tspan.h" -#include "xml/sp-css-attr.h" -#include "sp-path.h" +#include "object/filters/blend.h" +#include "object/filters/gaussian-blur.h" + +#include "svg/css-ostringstream.h" +#include "svg/svg-color.h" +#include "svg/svg.h" + #include "ui/tools/tool-base.h" -#include "desktop-style.h" -#include "box3d-side.h" +#include "xml/sp-css-attr.h" namespace { |
