diff options
| author | Jabier Arraiza Cenoz <jabier.arraiza@marker.es> | 2013-11-10 02:08:46 +0000 |
|---|---|---|
| committer | Jabiertxof <jtx@jtx.marker.es> | 2013-11-10 02:08:46 +0000 |
| commit | ca1286aa677b5ff8d80fe274dfa3e759478570b3 (patch) | |
| tree | 36c7edfa575cea3d3bddfc4b034f7a35a8374ade /src/ui/tools/eraser-tool.cpp | |
| parent | Fixing bugs on update to trunk (diff) | |
| parent | Revert unintentional change. (diff) | |
| download | inkscape-ca1286aa677b5ff8d80fe274dfa3e759478570b3.tar.gz inkscape-ca1286aa677b5ff8d80fe274dfa3e759478570b3.zip | |
Update to trunk
(bzr r11950.1.195)
Diffstat (limited to '')
| -rw-r--r-- | src/ui/tools/eraser-tool.cpp (renamed from src/eraser-context.cpp) | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/eraser-context.cpp b/src/ui/tools/eraser-tool.cpp index 6445ac3d5..270987d27 100644 --- a/src/eraser-context.cpp +++ b/src/ui/tools/eraser-tool.cpp @@ -67,7 +67,7 @@ #include <2geom/math-utils.h> #include <2geom/pathvector.h> -#include "eraser-context.h" +#include "ui/tools/eraser-tool.h" using Inkscape::DocumentUndo; @@ -103,7 +103,7 @@ const std::string& EraserTool::getPrefsPath() { const std::string EraserTool::prefsPath = "/tools/eraser"; -EraserTool::EraserTool() : SPCommonContext() { +EraserTool::EraserTool() : DynamicBase() { this->cursor_shape = cursor_eraser_xpm; this->hot_x = 4; this->hot_y = 4; @@ -113,7 +113,7 @@ EraserTool::~EraserTool() { } void EraserTool::setup() { - SPCommonContext::setup(); + DynamicBase::setup(); this->accumulated = new SPCurve(); this->currentcurve = new SPCurve(); @@ -618,7 +618,7 @@ bool EraserTool::root_handler(GdkEvent* event) { } if (!ret) { - ret = SPCommonContext::root_handler(event); + ret = DynamicBase::root_handler(event); } return ret; |
