src/tools/drawtool.cpp@05ce5a34c497
src/tools/drawtool.cpp
Tue, 26 Jan 2021 12:21:35 +0200
- author
- Teemu Piippo <teemu@hecknology.net>
- date
- Tue, 26 Jan 2021 12:21:35 +0200
- changeset 99
- 05ce5a34c497
- parent 96
-
165777a20dc7
- child 102
-
9f435f66bd0c
- child 103
-
94719518e310
- permissions
- -rw-r--r--
disable cotire because it's messing up Qt Creator's Clang code model for me
#include "drawtool.h"
DrawTool::DrawTool(QObject* parent) :
BaseTool{parent} {}
QString DrawTool::name() const
{
static const QString result = tr("Draw");
return result;
}
QString DrawTool::toolTip() const
{
static const QString result = tr("Draw new elements into the model.");
return result;
}