summaryrefslogtreecommitdiff
path: root/src/location/places
diff options
context:
space:
mode:
authorKevin Funk <kfunk@kde.org>2018-01-31 14:35:47 +0100
committerKevin Funk <kevin.funk@kdab.com>2018-02-05 13:14:53 +0000
commit5c4c0cb58e29944bb7b01105a1f6a7a8a2d90369 (patch)
tree767bea03ffa6f2a26d57ee6acbe42e6766576575 /src/location/places
parentb4807a11e816feaa3b541b4e4b02f77c1fafbf48 (diff)
downloadqtlocation-5c4c0cb58e29944bb7b01105a1f6a7a8a2d90369.tar.gz
Replace Q_NULLPTR with nullptr
Change-Id: Icbebfaae93cc5827d80ef09323ec82868789838a Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'src/location/places')
-rw-r--r--src/location/places/qplacecontentreply.h2
-rw-r--r--src/location/places/qplacedetailsreply.h2
-rw-r--r--src/location/places/qplaceidreply.h2
-rw-r--r--src/location/places/qplacemanager.h2
-rw-r--r--src/location/places/qplacemanagerengine.h2
-rw-r--r--src/location/places/qplacematchreply.h2
-rw-r--r--src/location/places/qplacereply.h4
-rw-r--r--src/location/places/qplacesearchreply.h2
-rw-r--r--src/location/places/qplacesearchsuggestionreply.h2
9 files changed, 10 insertions, 10 deletions
diff --git a/src/location/places/qplacecontentreply.h b/src/location/places/qplacecontentreply.h
index fa96a0e2..929d3384 100644
--- a/src/location/places/qplacecontentreply.h
+++ b/src/location/places/qplacecontentreply.h
@@ -49,7 +49,7 @@ class Q_LOCATION_EXPORT QPlaceContentReply : public QPlaceReply
Q_OBJECT
public:
- explicit QPlaceContentReply(QObject *parent = Q_NULLPTR);
+ explicit QPlaceContentReply(QObject *parent = nullptr);
virtual ~QPlaceContentReply();
QPlaceReply::Type type() const;
diff --git a/src/location/places/qplacedetailsreply.h b/src/location/places/qplacedetailsreply.h
index 09593a1e..6c3acca7 100644
--- a/src/location/places/qplacedetailsreply.h
+++ b/src/location/places/qplacedetailsreply.h
@@ -47,7 +47,7 @@ class Q_LOCATION_EXPORT QPlaceDetailsReply : public QPlaceReply
{
Q_OBJECT
public:
- explicit QPlaceDetailsReply(QObject *parent = Q_NULLPTR);
+ explicit QPlaceDetailsReply(QObject *parent = nullptr);
virtual ~QPlaceDetailsReply();
QPlaceReply::Type type() const;
diff --git a/src/location/places/qplaceidreply.h b/src/location/places/qplaceidreply.h
index ea44828b..6ecf12c8 100644
--- a/src/location/places/qplaceidreply.h
+++ b/src/location/places/qplaceidreply.h
@@ -55,7 +55,7 @@ public:
RemoveCategory
};
- explicit QPlaceIdReply(OperationType operationType, QObject *parent = Q_NULLPTR);
+ explicit QPlaceIdReply(OperationType operationType, QObject *parent = nullptr);
virtual ~QPlaceIdReply();
QPlaceReply::Type type() const;
diff --git a/src/location/places/qplacemanager.h b/src/location/places/qplacemanager.h
index bd4b1676..146bdd02 100644
--- a/src/location/places/qplacemanager.h
+++ b/src/location/places/qplacemanager.h
@@ -112,7 +112,7 @@ Q_SIGNALS:
void dataChanged();
private:
- explicit QPlaceManager(QPlaceManagerEngine *engine, QObject *parent = Q_NULLPTR);
+ explicit QPlaceManager(QPlaceManagerEngine *engine, QObject *parent = nullptr);
Q_DISABLE_COPY(QPlaceManager)
QPlaceManagerEngine *d;
diff --git a/src/location/places/qplacemanagerengine.h b/src/location/places/qplacemanagerengine.h
index 0c11278f..9528cc22 100644
--- a/src/location/places/qplacemanagerengine.h
+++ b/src/location/places/qplacemanagerengine.h
@@ -53,7 +53,7 @@ class Q_LOCATION_EXPORT QPlaceManagerEngine : public QObject
Q_OBJECT
public:
- explicit QPlaceManagerEngine(const QVariantMap &parameters, QObject *parent = Q_NULLPTR);
+ explicit QPlaceManagerEngine(const QVariantMap &parameters, QObject *parent = nullptr);
virtual ~QPlaceManagerEngine();
QString managerName() const;
diff --git a/src/location/places/qplacematchreply.h b/src/location/places/qplacematchreply.h
index df4b3fda..8e195663 100644
--- a/src/location/places/qplacematchreply.h
+++ b/src/location/places/qplacematchreply.h
@@ -47,7 +47,7 @@ class Q_LOCATION_EXPORT QPlaceMatchReply : public QPlaceReply
{
Q_OBJECT
public:
- explicit QPlaceMatchReply(QObject *parent = Q_NULLPTR);
+ explicit QPlaceMatchReply(QObject *parent = nullptr);
~QPlaceMatchReply();
QPlaceReply::Type type() const;
diff --git a/src/location/places/qplacereply.h b/src/location/places/qplacereply.h
index 3eb3d6cc..8fd34643 100644
--- a/src/location/places/qplacereply.h
+++ b/src/location/places/qplacereply.h
@@ -71,7 +71,7 @@ public:
MatchReply
};
- explicit QPlaceReply(QObject *parent = Q_NULLPTR);
+ explicit QPlaceReply(QObject *parent = nullptr);
~QPlaceReply();
bool isFinished() const;
@@ -90,7 +90,7 @@ Q_SIGNALS:
void error(QPlaceReply::Error error, const QString &errorString = QString());
protected:
- explicit QPlaceReply(QPlaceReplyPrivate *, QObject *parent = Q_NULLPTR);
+ explicit QPlaceReply(QPlaceReplyPrivate *, QObject *parent = nullptr);
void setFinished(bool finished);
void setError(QPlaceReply::Error error, const QString &errorString);
QPlaceReplyPrivate *d_ptr;
diff --git a/src/location/places/qplacesearchreply.h b/src/location/places/qplacesearchreply.h
index 52c88899..3562aede 100644
--- a/src/location/places/qplacesearchreply.h
+++ b/src/location/places/qplacesearchreply.h
@@ -49,7 +49,7 @@ class Q_LOCATION_EXPORT QPlaceSearchReply : public QPlaceReply
{
Q_OBJECT
public:
- explicit QPlaceSearchReply(QObject *parent = Q_NULLPTR);
+ explicit QPlaceSearchReply(QObject *parent = nullptr);
~QPlaceSearchReply();
QPlaceReply::Type type() const;
diff --git a/src/location/places/qplacesearchsuggestionreply.h b/src/location/places/qplacesearchsuggestionreply.h
index 3909b14f..49088874 100644
--- a/src/location/places/qplacesearchsuggestionreply.h
+++ b/src/location/places/qplacesearchsuggestionreply.h
@@ -49,7 +49,7 @@ class Q_LOCATION_EXPORT QPlaceSearchSuggestionReply : public QPlaceReply
{
Q_OBJECT
public:
- explicit QPlaceSearchSuggestionReply(QObject *parent = Q_NULLPTR);
+ explicit QPlaceSearchSuggestionReply(QObject *parent = nullptr);
~QPlaceSearchSuggestionReply();
QStringList suggestions() const;