src/tools/selecttool.cpp

changeset 96
165777a20dc7
child 107
02f142b399b1
equal deleted inserted replaced
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 }

mercurial