Update of /cvsroot/anyedit/AnyEditv2
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21313
Modified Files:
FindComboBox.cpp
Log Message:
- Added drop down reflection to handle drop down notification
Index: FindComboBox.cpp
===================================================================
RCS file: /cvsroot/anyedit/AnyEditv2/FindComboBox.cpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** FindComboBox.cpp 10 Jul 2004 19:07:57 -0000 1.5
--- FindComboBox.cpp 16 Oct 2005 12:15:18 -0000 1.6
***************
*** 56,59 ****
--- 56,60 ----
ON_CONTROL_REFLECT(CBN_EDITUPDATE, OnEditUpdate)
ON_CONTROL_REFLECT(CBN_SETFOCUS, OnSetFocus)
+ ON_CONTROL_REFLECT(CBN_DROPDOWN, OnDropdown)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
***************
*** 158,161 ****
--- 159,166 ----
bRes = TRUE;
break;
+
+ case CBN_DROPDOWN:
+ bRes = TRUE;
+ break;
}
***************
*** 168,172 ****
CFindComboBox* pWndCombo = new CFindComboBox;
! if (!pWndCombo->Create (m_dwStyle, rect, pWndParent, m_nID))
{
delete pWndCombo;
--- 173,177 ----
CFindComboBox* pWndCombo = new CFindComboBox;
! if (!pWndCombo->Create (m_dwStyle | CBS_DROPDOWN, rect, pWndParent, m_nID))
{
delete pWndCombo;
|