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/common-context.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/common-context.h')
| -rw-r--r-- | src/common-context.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/common-context.h b/src/common-context.h index dc4c82251..658d2ef17 100644 --- a/src/common-context.h +++ b/src/common-context.h @@ -25,7 +25,11 @@ #define SAMPLING_SIZE 8 /* fixme: ?? */ -class SPCommonContext : public SPEventContext { +namespace Inkscape { +namespace UI { +namespace Tools { + +class SPCommonContext : public ToolBase { public: SPCommonContext(); virtual ~SPCommonContext(); @@ -100,6 +104,10 @@ protected: Geom::Point getNormalizedPoint(Geom::Point v) const; }; +} +} +} + #endif // COMMON_CONTEXT_H_SEEN /* |
