wxWindow no longer emits any scroll events after
a programmatic change to its scrollbars. Reverted sense of SHIFT and CONTROL in wxListCtrl. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5850 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -65,25 +65,24 @@
|
||||
|
||||
class wxFileIconEntry : public wxObject
|
||||
{
|
||||
public:
|
||||
wxFileIconEntry(int i) { id = i; }
|
||||
public:
|
||||
wxFileIconEntry(int i) { id = i; }
|
||||
|
||||
int id;
|
||||
int id;
|
||||
};
|
||||
|
||||
|
||||
class wxFileIconsTable
|
||||
{
|
||||
public:
|
||||
public:
|
||||
wxFileIconsTable();
|
||||
|
||||
wxFileIconsTable();
|
||||
int GetIconID(const wxString& extension, const wxString& mime = wxEmptyString);
|
||||
wxImageList *GetImageList() { return &m_ImageList; }
|
||||
|
||||
int GetIconID(const wxString& extension, const wxString& mime = wxEmptyString);
|
||||
wxImageList *GetImageList() { return &m_ImageList; }
|
||||
|
||||
protected:
|
||||
wxImageList m_ImageList;
|
||||
wxHashTable m_HashTable;
|
||||
protected:
|
||||
wxImageList m_ImageList;
|
||||
wxHashTable m_HashTable;
|
||||
};
|
||||
|
||||
static wxFileIconsTable *g_IconsTable = NULL;
|
||||
|
Reference in New Issue
Block a user