From d3496b12310d9fec0e52e537c341e87fcaa2f8b5 Mon Sep 17 00:00:00 2001 From: Peter Penz Date: Wed, 9 Feb 2011 19:21:58 +0100 Subject: Coding style update for pointer comparison Most developers seem to prefer if (ptr) ... if (!ptr) ... in comparison to if (ptr != 0) ... if (ptr == 0) ... Adjusted the Dolphin-code to use the "most-prefered style" to make contributors happy. --- src/views/dolphindetailsviewexpander.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/views/dolphindetailsviewexpander.cpp') diff --git a/src/views/dolphindetailsviewexpander.cpp b/src/views/dolphindetailsviewexpander.cpp index c2734ed3a..cc4bc67be 100644 --- a/src/views/dolphindetailsviewexpander.cpp +++ b/src/views/dolphindetailsviewexpander.cpp @@ -34,16 +34,16 @@ DolphinDetailsViewExpander::DolphinDetailsViewExpander(DolphinDetailsView* paren m_dolphinModel(0), m_proxyModel(0) { - Q_ASSERT(parent != 0); + Q_ASSERT(parent); m_proxyModel = qobject_cast(parent->model()); - Q_ASSERT(m_proxyModel != 0); + Q_ASSERT(m_proxyModel); m_dolphinModel = qobject_cast(m_proxyModel->sourceModel()); - Q_ASSERT(m_dolphinModel != 0); + Q_ASSERT(m_dolphinModel); m_dirLister = m_dolphinModel->dirLister(); - Q_ASSERT(m_dirLister != 0); + Q_ASSERT(m_dirLister); // The URLs must be sorted. E.g. /home/user/ cannot be expanded before /home/ // because it is not known to the dir model before. -- cgit v1.3