aboutsummaryrefslogtreecommitdiff
path: root/backends/wince/CEgui/Panel.h
diff options
context:
space:
mode:
Diffstat (limited to 'backends/wince/CEgui/Panel.h')
-rw-r--r--backends/wince/CEgui/Panel.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/backends/wince/CEgui/Panel.h b/backends/wince/CEgui/Panel.h
index cae2fa238f..8c4f4b3c7f 100644
--- a/backends/wince/CEgui/Panel.h
+++ b/backends/wince/CEgui/Panel.h
@@ -48,12 +48,8 @@ namespace CEGUI {
virtual void forceRedraw();
virtual bool action(int x, int y, bool pushed);
private:
- struct IgnoreCaseComparator {
- int operator()(const String& x, const String& y) const {
- return scumm_stricmp(x.c_str(), y.c_str()); }
- };
- typedef HashMap<String, PanelItem*, Common::IgnoreCase_Hash , IgnoreCaseComparator> ItemMap;
+ typedef HashMap<String, PanelItem*, Common::IgnoreCase_Hash , Common::IgnoreCase_EqualTo> ItemMap;
ItemMap _itemsMap;
int _interleave;