Removed left-click interception to allow highlighting of list items.

svn path=/trunk/boinc/; revision=1569
This commit is contained in:
Dan Werthimer 2003-06-23 20:22:24 +00:00
parent cc2e240fda
commit c3c6b87873
2 changed files with 7 additions and 1 deletions

View File

@ -907,9 +907,15 @@ void CProgressListCtrl::OnDestroy()
// point: mouse's point
// returns: void
// function: stops control from highlighting items, opens links
// NOTE: Removed this function to allow highlighting; unsure if this
// will produce unwanted side-effects. -JBK
/*
void CProgressListCtrl::OnLButtonDown(UINT nFlags, CPoint point)
{
}
*/
//////////
// CProgressListCtrl::OnRButtonDown

View File

@ -123,7 +123,7 @@ protected:
afx_msg BOOL OnNotify(WPARAM, LPARAM, LRESULT*);
afx_msg void OnCustomDraw(NMHDR*, LRESULT*);
afx_msg void OnPaint();
afx_msg void OnLButtonDown(UINT, CPoint);
//afx_msg void OnLButtonDown(UINT, CPoint); // Removed to allow highlighting.
afx_msg void OnRButtonDown(UINT, CPoint);
DECLARE_MESSAGE_MAP()
};