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/toolbox.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 '')
| -rw-r--r-- | src/widgets/toolbox.cpp | 45 |
1 files changed, 26 insertions, 19 deletions
diff --git a/src/widgets/toolbox.cpp b/src/widgets/toolbox.cpp index 11be3b15d..5894391ff 100644 --- a/src/widgets/toolbox.cpp +++ b/src/widgets/toolbox.cpp @@ -36,31 +36,38 @@ #include <gtkmm/toolitem.h> #include <glibmm/i18n.h> -#include "../desktop.h" -#include "../desktop-style.h" +#include "desktop-style.h" +#include "desktop.h" #include "document-undo.h" -#include "widgets/ege-adjustment-action.h" -#include "../helper/action.h" +#include "inkscape.h" +#include "shortcuts.h" +#include "verbs.h" + #include "ink-action.h" #include "ink-toggle-action.h" -#include "../inkscape.h" + +#include "helper/action.h" + +#include "io/resource.h" + +#include "object/sp-namedview.h" + +#include "ui/icon-names.h" #include "ui/interface.h" -#include "../shortcuts.h" -#include "../sp-namedview.h" #include "ui/tools-switch.h" -#include "../ui/icon-names.h" -#include "../ui/widget/style-swatch.h" -#include "../ui/widget/unit-tracker.h" -#include "../verbs.h" -#include "../widgets/button.h" -#include "../widgets/spinbutton-events.h" -#include "ui/widget/spinbutton.h" -#include "../widgets/spw-utilities.h" -#include "../widgets/widget-sizes.h" -#include "../xml/attribute-record.h" -#include "../xml/node-event-vector.h" #include "ui/uxmanager.h" -#include "io/resource.h" +#include "ui/widget/spinbutton.h" +#include "ui/widget/style-swatch.h" +#include "ui/widget/unit-tracker.h" + +#include "widgets/button.h" +#include "widgets/ege-adjustment-action.h" +#include "widgets/spinbutton-events.h" +#include "widgets/spw-utilities.h" +#include "widgets/widget-sizes.h" + +#include "xml/attribute-record.h" +#include "xml/node-event-vector.h" #include "arc-toolbar.h" #include "box3d-toolbar.h" |
