src/tools/selecttool.cpp

Fri, 05 Feb 2021 14:23:16 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Fri, 05 Feb 2021 14:23:16 +0200
changeset 101
910890292639
parent 96
165777a20dc7
child 107
02f142b399b1
permissions
-rw-r--r--

added references to items()

#include "selecttool.h"

SelectTool::SelectTool(QObject* parent) :
	BaseTool{parent} {}

QString SelectTool::name() const
{
	static const QString result = tr("Select");
	return result;
}

QString SelectTool::toolTip() const
{
	static const QString result = tr("Select elements from the model.");
	return result;
}

mercurial