Browse Source

Fix debug info display regression

This regression was introduced by 83f0232d91

Fix #14921
pull/14876/head
Don Ho 8 months ago
parent
commit
60034edf37
  1. 2
      PowerEditor/src/WinControls/AboutDlg/AboutDlg.cpp

2
PowerEditor/src/WinControls/AboutDlg/AboutDlg.cpp

@ -287,7 +287,7 @@ intptr_t CALLBACK DebugInfoDlg::run_dlgProc(UINT message, WPARAM wParam, LPARAM
_debugInfoStr += szProductName;
_debugInfoStr += L" (";
_debugInfoStr += (NppParameters::getInstance()).getWinVerBitStr();
_debugInfoStr += L"";
_debugInfoStr += L")";
_debugInfoStr += L"\r\n";
if (szReleaseId[0] != '\0')

Loading…
Cancel
Save