Fix some incorrect typing with the NULL->nullptr conversion for Windows

This commit is contained in:
teejusb
2019-06-22 23:16:10 -07:00
parent f230d39634
commit f08d7d9f68
4 changed files with 7 additions and 6 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ static RString GetNewWindow()
{
HWND h = GetForegroundWindow();
if( h == nullptr )
return "(nullptr)";
return "(NULL)";
DWORD iProcessID;
GetWindowThreadProcessId( h, &iProcessID );