summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-01-06 11:18:26 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-01-06 11:18:26 +0100
commit4654e312cfcd84d64bc844c56b3fab8594a76888 (patch)
treeb798844a534eac676dc3c5e9cf15ee7af18b3be5 /desktop
parentb12b4fdaf63dd4ae350cf95b5d89a9dbad107abd (diff)
loplugin:nullptr
Change-Id: I279e65c2ec5fa7b3b06f01e7ef4e50ed822fcd03
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/app/cmdlinehelp.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/app/cmdlinehelp.cxx b/desktop/source/app/cmdlinehelp.cxx
index 89ef21ab5e82..6498ec85516c 100644
--- a/desktop/source/app/cmdlinehelp.cxx
+++ b/desktop/source/app/cmdlinehelp.cxx
@@ -180,7 +180,7 @@ namespace desktop
HANDLE hIn = GetStdHandle(STD_INPUT_HANDLE),
hOut = GetStdHandle(STD_OUTPUT_HANDLE),
hErr = GetStdHandle(STD_ERROR_HANDLE);
- if (hOut == NULL) // application does not have associated standard handles
+ if (hOut == nullptr) // application does not have associated standard handles
{
STARTUPINFOA aStartupInfo;
aStartupInfo.cb = sizeof(aStartupInfo);