Utils: Consistently use nullptr

Fixed by clang-tidy modernize-use-nullptr.

Change-Id: I93edae67271a521e3b2a1f97f486e5fa97009836
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
Tobias Hunger
2018-05-07 17:33:02 +02:00
committed by Orgad Shaneh
parent ebf2d6f4e2
commit 63ef88d015
52 changed files with 101 additions and 95 deletions

View File

@@ -41,7 +41,7 @@ class QTCREATOR_UTILS_EXPORT ProxyCredentialsDialog : public QDialog
Q_OBJECT
public:
explicit ProxyCredentialsDialog(const QNetworkProxy &proxy, QWidget *parent = 0);
explicit ProxyCredentialsDialog(const QNetworkProxy &proxy, QWidget *parent = nullptr);
~ProxyCredentialsDialog() override;
QString userName() const;