Cleanup: remove all Q_NULLPTR instances

It expands to nullptr anyway and is inconsitent with the rest of the
code. Let's remove this anachronism.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2019-04-01 23:11:19 +02:00 committed by Dirk Hohndel
parent 30746e5d3f
commit 30230dce10
4 changed files with 6 additions and 6 deletions

View file

@ -24,8 +24,8 @@ MapWidget *MapWidget::m_instance = NULL;
MapWidget::MapWidget(QWidget *parent) : QQuickWidget(parent)
{
m_rootItem = Q_NULLPTR;
m_mapHelper = Q_NULLPTR;
m_rootItem = nullptr;
m_mapHelper = nullptr;
setResizeMode(QQuickWidget::SizeRootObjectToView);
connect(this, &QQuickWidget::statusChanged, this, &MapWidget::doneLoading);
setSource(urlMapWidget);