Why are function addresses displayed on message cards created by the class wizard written with the class name explicitly mentioned?
For example:
ON_BN_CLICKED(IDC_CHECK1, &CMyDlg::OnClickedSomeButton)
instead:
ON_BN_CLICKED(IDC_CHECK1, &OnClickedSomeButton)
or even:
ON_BN_CLICKED(IDC_CHECK1, OnClickedSomeButton)
All three options compile correctly.
This is just curiosity.
c ++ mfc
Michael walz
source share