From f3c402a6df0060dc4d0f3013c5d1fa31960dba7c Mon Sep 17 00:00:00 2001 From: Paul Wicking Date: Wed, 10 Jun 2020 07:22:27 +0200 Subject: Doc snippets: Use nullptr instead of 0 literal Also mark constructors explicit, where applicable. Pick-to: 5.15 Fixes: QTBUG-84859 Change-Id: I145d366d854fd6b4373bcc23d0b880d6361d9014 Reviewed-by: Marc Mutz --- src/gui/doc/snippets/code/src_gui_opengl_qopenglfunctions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/gui/doc/snippets/code') diff --git a/src/gui/doc/snippets/code/src_gui_opengl_qopenglfunctions.cpp b/src/gui/doc/snippets/code/src_gui_opengl_qopenglfunctions.cpp index e072c110f2..e4255107d3 100644 --- a/src/gui/doc/snippets/code/src_gui_opengl_qopenglfunctions.cpp +++ b/src/gui/doc/snippets/code/src_gui_opengl_qopenglfunctions.cpp @@ -53,7 +53,7 @@ { Q_OBJECT public: - MyGLWindow(QScreen *screen = 0); + explicit MyGLWindow(QScreen *screen = nullptr); protected: void initializeGL(); -- cgit v1.2.1