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/dyna-draw-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/dyna-draw-context.h')
| -rw-r--r-- | src/dyna-draw-context.h | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/src/dyna-draw-context.h b/src/dyna-draw-context.h index 36a429a8d..5793b1142 100644 --- a/src/dyna-draw-context.h +++ b/src/dyna-draw-context.h @@ -29,10 +29,14 @@ #define DDC_MAX_TILT 1.0 #define DDC_DEFAULT_TILT 0.0 -class SPDynaDrawContext : public SPCommonContext { +namespace Inkscape { +namespace UI { +namespace Tools { + +class CalligraphicTool : public SPCommonContext { public: - SPDynaDrawContext(); - virtual ~SPDynaDrawContext(); + CalligraphicTool(); + virtual ~CalligraphicTool(); static const std::string prefsPath; @@ -72,6 +76,10 @@ private: void reset(Geom::Point p); }; +} +} +} + #endif // SP_DYNA_DRAW_CONTEXT_H_SEEN /* |
