Add needed space in "Window dialog"

Fix #9542
This commit is contained in:
Don HO 2021-02-20 03:44:37 +01:00
parent 35584b379f
commit 1eaaf45d87
No known key found for this signature in database
GPG Key ID: 6C429F1D8D84F46E
1 changed files with 1 additions and 0 deletions

View File

@ -868,6 +868,7 @@ void WindowsDlg::doCount()
generic_string msg = pNativeSpeaker->getAttrNameStr(TEXT("Windows"), "Dialog", "Window", "title");
msg += TEXT(" - ");
msg += pNativeSpeaker->getAttrNameStr(TEXT("Total documents: "), WD_ROOTNODE, WD_NBDOCSTOTAL);
msg += TEXT(" ");
msg += to_wstring(_idxMap.size());
SetWindowText(_hSelf,msg.c_str());
}