diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2016-05-27 16:51:13 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2016-05-27 16:51:13 +0900 |
commit | 5e6a0b961d1fc2162c5a7498f10bbd1a477f1ece (patch) | |
tree | 77117f83c060008caf9605f4582e34d796ad0e6c /connection.h | |
parent | a2c08f646bf2d6fe0ce385940b5c1bb7b430d5fb (diff) | |
download | libquotient-5e6a0b961d1fc2162c5a7498f10bbd1a477f1ece.tar.gz libquotient-5e6a0b961d1fc2162c5a7498f10bbd1a477f1ece.zip |
Use nullptr
Diffstat (limited to 'connection.h')
-rw-r--r-- | connection.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/connection.h b/connection.h index 9f3d23f3..452db198 100644 --- a/connection.h +++ b/connection.h @@ -37,7 +37,7 @@ namespace QMatrixClient class Connection: public QObject { Q_OBJECT public: - Connection(QUrl server, QObject* parent=0); + Connection(QUrl server, QObject* parent = nullptr); Connection(); virtual ~Connection(); |