Index: src/ch/Dialogs.cpp =================================================================== diff -u -N -r449a5b399ab21ca0d06050b47b264f2f704af966 -r8068e0c351055554340ac9755d1bc846893bf2b8 --- src/ch/Dialogs.cpp (.../Dialogs.cpp) (revision 449a5b399ab21ca0d06050b47b264f2f704af966) +++ src/ch/Dialogs.cpp (.../Dialogs.cpp) (revision 8068e0c351055554340ac9755d1bc846893bf2b8) @@ -39,16 +39,16 @@ LPITEMIDLIST pidl; // Get help on BROWSEINFO struct - it's got all the bit settings. - bi.hwndOwner = NULL; - bi.pidlRoot = NULL; + bi.hwndOwner = nullptr; + bi.pidlRoot = nullptr; bi.pszDisplayName = pszBuffer; bi.lpszTitle = lpszTitle; bi.ulFlags = BIF_RETURNFSANCESTORS | BIF_RETURNONLYFSDIRS; - bi.lpfn = NULL; + bi.lpfn = nullptr; bi.lParam = 0; // This next call issues the dialog box. - if ((pidl = ::SHBrowseForFolder(&bi)) != NULL) + if ((pidl = ::SHBrowseForFolder(&bi)) != nullptr) { if (::SHGetPathFromIDList(pidl, pszBuffer)) {