summaryrefslogtreecommitdiffstats
path: root/src/gui/doc/snippets/textdocument-imagedrop/textedit.h
diff options
context:
space:
mode:
authorPaul Wicking <paul.wicking@qt.io>2020-06-10 07:22:27 +0200
committerPaul Wicking <paul.wicking@qt.io>2020-06-10 07:47:37 +0200
commitf3c402a6df0060dc4d0f3013c5d1fa31960dba7c (patch)
tree9d6a8815d703f4c8d7335fc03f1c66826fdc862f /src/gui/doc/snippets/textdocument-imagedrop/textedit.h
parentc208b648f91da5139b8eda0c239201768f9d4059 (diff)
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 <marc.mutz@kdab.com>
Diffstat (limited to 'src/gui/doc/snippets/textdocument-imagedrop/textedit.h')
-rw-r--r--src/gui/doc/snippets/textdocument-imagedrop/textedit.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/doc/snippets/textdocument-imagedrop/textedit.h b/src/gui/doc/snippets/textdocument-imagedrop/textedit.h
index 3f570884ba..5db7dd0ad7 100644
--- a/src/gui/doc/snippets/textdocument-imagedrop/textedit.h
+++ b/src/gui/doc/snippets/textdocument-imagedrop/textedit.h
@@ -58,7 +58,7 @@ class TextEdit : public QTextEdit
Q_OBJECT
public:
- TextEdit(QWidget *parent=0);
+ explicit TextEdit(QWidget *parent = nullptr);
bool canInsertFromMimeData( const QMimeData *source ) const override;
void insertFromMimeData( const QMimeData *source ) override;
};