blob: 7909313c1c8fc8ee6f78a5da88b08ba0496e8069 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//
//=============================================================================//
#ifndef _MYCHECKLISTBOX_H
#define _MYCHECKLISTBOX_H
// for SOME REASON CompareItem in a CCheckListBox has to be overridden.
// dumb MFC.
class CMyCheckListBox : public CCheckListBox
{
public:
BOOL CompareItem(LPCOMPAREITEMSTRUCT lpcis)
{ return 0; }
};
#endif // _MYCHECKLISTBOX_H
|