qmlmapwidgethelper: remove stray test() method

Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
This commit is contained in:
Lubomir I. Ivanov 2017-07-17 00:00:33 +03:00 committed by Dirk Hohndel
parent 5266a5e84b
commit c68536ec56
2 changed files with 0 additions and 7 deletions

View file

@ -4,8 +4,3 @@
MapWidgetHelper::MapWidgetHelper(QObject *parent) : QObject(parent)
{
}
void MapWidgetHelper::test()
{
qDebug() << "test";
}

View file

@ -11,8 +11,6 @@ class MapWidgetHelper : public QObject {
public:
explicit MapWidgetHelper(QObject *parent = NULL);
void test();
private:
QObject *m_map;
};