| 92 | |
| 93 | |
| 94 | FillTool::FillTool(MapEditorController* editor, QAction* tool_action) |
| 95 | : MapEditorToolBase(QCursor(QPixmap(QString::fromLatin1(":/images/cursor-fill.png")), 11, 11), Other, editor, tool_action) |
| 96 | { |
| 97 | drawing_symbol = editor->activeSymbol(); |
| 98 | setDrawingSymbol(editor->activeSymbol()); |
| 99 | |
| 100 | connect(editor, &MapEditorController::activeSymbolChanged, this, &FillTool::setDrawingSymbol); |
| 101 | } |
| 102 | |
| 103 | FillTool::~FillTool() = default; |
| 104 |
nothing calls this directly
no test coverage detected