aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorKevin Funk <kfunk@kde.org>2017-09-24 23:55:06 +0200
committerKevin Funk <kevin.funk@kdab.com>2017-09-26 17:13:56 +0000
commit8b1769f9e33ffe820c39f8f2a43a575ab5ae7772 (patch)
tree579300539a7cd1b79ff98e804473027f9ac04042 /examples
parentb1ff51b6d555011e28ab8e9d28cddf88c88bfc46 (diff)
Replace Q_NULLPTR with nullptr
Change-Id: Ia07741ad7ee5174c03b12d6880e00d279a6d4eae Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'examples')
-rw-r--r--examples/winextras/iconextractor/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/winextras/iconextractor/main.cpp b/examples/winextras/iconextractor/main.cpp
index eb39f9f..6efd27b 100644
--- a/examples/winextras/iconextractor/main.cpp
+++ b/examples/winextras/iconextractor/main.cpp
@@ -141,7 +141,7 @@ static QPixmap pixmapFromShellImageList(int iImageList, const SHFILEINFO &info)
// For MinGW:
static const IID iID_IImageList = {0x46eb5926, 0x582e, 0x4017, {0x9f, 0xdf, 0xe8, 0x99, 0x8d, 0xaa, 0x9, 0x50}};
- IImageList *imageList = Q_NULLPTR;
+ IImageList *imageList = nullptr;
if (FAILED(SHGetImageList(iImageList, iID_IImageList, reinterpret_cast<void **>(&imageList))))
return result;