diff options
| author | Markus Engel <markus.engel@tum.de> | 2013-11-07 20:44:00 +0000 |
|---|---|---|
| committer | Markus Engel <markus.engel@tum.de> | 2013-11-07 20:44:00 +0000 |
| commit | 55b451bf382e0c3d5ed8728e42fbb535acfa8a33 (patch) | |
| tree | 094d9faca06cfffc89a872732db4ac3ef60508d9 /src/inkscape.h | |
| parent | Fix for Bug #1247985 (Incorrect implementation of plural forms). (diff) | |
| download | inkscape-55b451bf382e0c3d5ed8728e42fbb535acfa8a33.tar.gz inkscape-55b451bf382e0c3d5ed8728e42fbb535acfa8a33.zip | |
First step of moving tools into appropriate namespaces.
(bzr r12782)
Diffstat (limited to 'src/inkscape.h')
| -rw-r--r-- | src/inkscape.h | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/src/inkscape.h b/src/inkscape.h index 0effc3c38..823e7524f 100644 --- a/src/inkscape.h +++ b/src/inkscape.h @@ -17,7 +17,16 @@ class SPDesktop; class SPDocument; -class SPEventContext; + +namespace Inkscape { +namespace UI { +namespace Tools { + +class ToolBase; + +} +} +} namespace Inkscape { class ActionContext; @@ -49,7 +58,7 @@ bool inkscapeIsCrashing(); SPDesktop * inkscape_find_desktop_by_dkey (unsigned int dkey); #define SP_ACTIVE_EVENTCONTEXT inkscape_active_event_context () -SPEventContext * inkscape_active_event_context (void); +Inkscape::UI::Tools::ToolBase * inkscape_active_event_context (void); #define SP_ACTIVE_DOCUMENT inkscape_active_document () SPDocument * inkscape_active_document (void); |
