2 bytes saved on exehead by using my_SetDlgItemText. heh.

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1101 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
justin1014 2002-09-21 02:34:34 +00:00
parent d493729c2f
commit e3d77d9ca6
4 changed files with 14 additions and 7 deletions

View file

@ -79,7 +79,7 @@ BOOL CALLBACK verProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
wsprintf(bt,msg,MulDiv(m_pos,100,m_length));
SetWindowText(hwndDlg,bt);
SetDlgItemText(hwndDlg,IDC_STR,bt);
my_SetDialogItemText(hwndDlg,IDC_STR,bt);
}
return 0;
}