From b917024aa1ac4cb0a40164132db3c6d2913157eb Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Thu, 3 Jan 2019 07:41:04 +0000 Subject: fixed build with -Werror=zero-as-null-pointer-constant git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@8572 90c681e8-e032-0410-971d-27865f9a5e38 --- src/qmmpui/playlistheadermodel.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/qmmpui/playlistheadermodel.h') diff --git a/src/qmmpui/playlistheadermodel.h b/src/qmmpui/playlistheadermodel.h index 755ae019d..9d1303695 100644 --- a/src/qmmpui/playlistheadermodel.h +++ b/src/qmmpui/playlistheadermodel.h @@ -43,7 +43,7 @@ public: * Constructs a playlist model. * @param parent QObject parent. */ - explicit PlayListHeaderModel(QObject *parent = 0); + explicit PlayListHeaderModel(QObject *parent = nullptr); /*! * Object destructor. */ @@ -93,13 +93,13 @@ public: * @param index Index of the column. * @param parent Parent widget, */ - void execEdit(int index, QWidget *parent = 0); + void execEdit(int index, QWidget *parent = nullptr); /*! * Opens internal column editor and inserts new column if user press "ok". * @param index Required index of the column. * @param parent Parent widget. */ - void execInsert(int index, QWidget *parent = 0); + void execInsert(int index, QWidget *parent = nullptr); /*! * Returns number of the columns. */ -- cgit v1.2.3-13-gbd6f