mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-17 06:03:02 +00:00
1
This commit is contained in:
@@ -0,0 +1,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
|
||||
Reference in New Issue
Block a user