Convert some 0 to nullptr

Change-Id: Ib3ca8e2cc0d63fd35582c73b3cf7c915fb64ddfb
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
Montel Laurent
2017-02-20 16:31:35 +01:00
committed by Laurent Montel
parent 4d402664c6
commit 9bccdb8885
24 changed files with 34 additions and 34 deletions

View File

@@ -30,12 +30,12 @@
namespace Utils {
ChangeSet::ChangeSet()
: m_string(0), m_cursor(0), m_error(false)
: m_string(nullptr), m_cursor(nullptr), m_error(false)
{
}
ChangeSet::ChangeSet(const QList<EditOp> &operations)
: m_string(0), m_cursor(0), m_operationList(operations), m_error(false)
: m_string(nullptr), m_cursor(nullptr), m_operationList(operations), m_error(false)
{
}