summaryrefslogtreecommitdiff
path: root/util/kconfig/qconf.h
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2018-06-05 08:41:29 +0200
committerPatrick Georgi <pgeorgi@google.com>2018-06-11 08:52:08 +0000
commit1d3fde4693aee3299b9023ec325cbfee90ed0969 (patch)
treec24725edd21dee6e97739f37e5548aa19d60d0ba /util/kconfig/qconf.h
parentf061a73ab9654ccae73b2fcbd58d8f08017bae59 (diff)
downloadcoreboot-1d3fde4693aee3299b9023ec325cbfee90ed0969.tar.xz
{src,util}: Use NULL instead of 0 for pointer
Change-Id: I75fa4577055f25dde0a8b1044c005bba72cabd92 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/26857 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'util/kconfig/qconf.h')
-rw-r--r--util/kconfig/qconf.h8
1 files changed, 4 insertions, 4 deletions
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);