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/widgets/gradient-vector.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/widgets/gradient-vector.cpp')
| -rw-r--r-- | src/widgets/gradient-vector.cpp | 50 |
1 files changed, 30 insertions, 20 deletions
diff --git a/src/widgets/gradient-vector.cpp b/src/widgets/gradient-vector.cpp index fdba2b56d..412f0b7e2 100644 --- a/src/widgets/gradient-vector.cpp +++ b/src/widgets/gradient-vector.cpp @@ -23,37 +23,47 @@ #include <config.h> #endif +#include <set> + #include <glibmm.h> -#include "gradient-vector.h" -#include "ui/widget/color-preview.h" -#include "verbs.h" -#include "macros.h" #include <glibmm/i18n.h> -#include <set> -#include "../widgets/gradient-image.h" -#include "../inkscape.h" -#include "../document-private.h" -#include "../gradient-chemistry.h" -#include "../helper/window.h" -#include "io/resource.h" -#include "xml/repr.h" -#include "../preferences.h" -#include "svg/css-ostringstream.h" -#include "sp-stop.h" -#include "selection-chemistry.h" -#include "style.h" -#include "sp-linear-gradient.h" -#include "sp-radial-gradient.h" + + +#include "document-private.h" +#include "gradient-chemistry.h" +#include "inkscape.h" +#include "preferences.h" #include "desktop.h" +#include "document-undo.h" +#include "gradient-vector.h" #include "layer-manager.h" +#include "macros.h" +#include "selection-chemistry.h" +#include "verbs.h" -#include "document-undo.h" +#include "helper/window.h" + +#include "io/resource.h" + +#include "object/sp-defs.h" +#include "object/sp-linear-gradient.h" +#include "object/sp-radial-gradient.h" +#include "object/sp-root.h" +#include "object/sp-stop.h" +#include "style.h" + +#include "svg/css-ostringstream.h" #include "ui/dialog-events.h" #include "ui/selected-color.h" #include "ui/widget/color-notebook.h" +#include "ui/widget/color-preview.h" + +#include "widgets/gradient-image.h" + +#include "xml/repr.h" using Inkscape::DocumentUndo; using Inkscape::UI::SelectedColor; |
