| 62 | namespace OpenOrienteering { |
| 63 | |
| 64 | DrawPointTool::DrawPointTool(MapEditorController* editor, QAction* tool_action) |
| 65 | : MapEditorToolBase(QCursor(QPixmap(QString::fromLatin1(":/images/cursor-draw-point.png")), 11, 11), DrawPoint, editor, tool_action) |
| 66 | , renderables(new MapRenderables(map())) |
| 67 | { |
| 68 | // all done in initImpl() |
| 69 | } |
| 70 | |
| 71 | DrawPointTool::~DrawPointTool() |
| 72 | { |