| 95:06a1aef170aa | 96:165777a20dc7 |
|---|---|
| 1 #include "selecttool.h" | |
| 2 | |
| 3 SelectTool::SelectTool(QObject* parent) : | |
| 4 BaseTool{parent} {} | |
| 5 | |
| 6 QString SelectTool::name() const | |
| 7 { | |
| 8 static const QString result = tr("Select"); | |
| 9 return result; | |
| 10 } | |
| 11 | |
| 12 QString SelectTool::toolTip() const | |
| 13 { | |
| 14 static const QString result = tr("Select elements from the model."); | |
| 15 return result; | |
| 16 } |