src/tools/drawtool.cpp@ae14da3d883f
src/tools/drawtool.cpp
Sun, 10 Jan 2021 17:26:40 +0200
- author
- Teemu Piippo <teemu@hecknology.net>
- date
- Sun, 10 Jan 2021 17:26:40 +0200
- changeset 98
- ae14da3d883f
- parent 96
-
165777a20dc7
- child 102
-
9f435f66bd0c
- child 103
-
94719518e310
- permissions
- -rw-r--r--
added translations to dependencies in CMakeLists... maybe that's the source of the trouble with translations getting emptied
#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;
}