From 375150347bf1b595705b20ad5d15c359095854ac Mon Sep 17 00:00:00 2001 From: Teo Mrnjavac Date: Thu, 7 May 2015 16:11:23 +0200 Subject: [PATCH] nullptr is better than 0 --- src/libcalamaresui/ViewManager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libcalamaresui/ViewManager.cpp b/src/libcalamaresui/ViewManager.cpp index eb5253129..a255874f0 100644 --- a/src/libcalamaresui/ViewManager.cpp +++ b/src/libcalamaresui/ViewManager.cpp @@ -46,9 +46,9 @@ ViewManager::ViewManager( QObject* parent ) : QObject( parent ) , m_widget( new QWidget() ) , m_currentStep( 0 ) - , m_installationViewStep( 0 ) + , m_installationViewStep( nullptr ) , m_phase( Prepare ) - , m_finishedStep( 0 ) + , m_finishedStep( nullptr ) { s_instance = this; QBoxLayout* mainLayout = new QVBoxLayout;