From 1d3fde4693aee3299b9023ec325cbfee90ed0969 Mon Sep 17 00:00:00 2001 From: Elyes HAOUAS Date: Tue, 5 Jun 2018 08:41:29 +0200 Subject: {src,util}: Use NULL instead of 0 for pointer Change-Id: I75fa4577055f25dde0a8b1044c005bba72cabd92 Signed-off-by: Elyes HAOUAS Reviewed-on: https://review.coreboot.org/26857 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi --- util/kconfig/qconf.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'util/kconfig/qconf.h') diff --git a/util/kconfig/qconf.h b/util/kconfig/qconf.h index a40036d1b0..676d88db3d 100644 --- a/util/kconfig/qconf.h +++ b/util/kconfig/qconf.h @@ -43,7 +43,7 @@ class ConfigList : public QTreeWidget { Q_OBJECT typedef class QTreeWidget Parent; public: - ConfigList(ConfigView* p, const char *name = 0); + ConfigList(ConfigView* p, const char *name = NULL); void reinit(void); ConfigView* parent(void) const { @@ -209,7 +209,7 @@ class ConfigView : public QWidget { Q_OBJECT typedef class QWidget Parent; public: - ConfigView(QWidget* parent, const char *name = 0); + ConfigView(QWidget* parent, const char *name = NULL); ~ConfigView(void); static void updateList(ConfigItem* item); static void updateListAll(void); @@ -242,7 +242,7 @@ class ConfigInfoView : public QTextBrowser { Q_OBJECT typedef class QTextBrowser Parent; public: - ConfigInfoView(QWidget* parent, const char *name = 0); + ConfigInfoView(QWidget* parent, const char *name = NULL); bool showDebug(void) const { return _showDebug; } public slots: @@ -272,7 +272,7 @@ class ConfigSearchWindow : public QDialog { Q_OBJECT typedef class QDialog Parent; public: - ConfigSearchWindow(ConfigMainWindow* parent, const char *name = 0); + ConfigSearchWindow(ConfigMainWindow* parent, const char *name = NULL); public slots: void saveSettings(void); -- cgit v1.2.3