summaryrefslogtreecommitdiff
path: root/wx+/grid.h
diff options
context:
space:
mode:
Diffstat (limited to 'wx+/grid.h')
-rw-r--r--wx+/grid.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/wx+/grid.h b/wx+/grid.h
index fd07d2c7..89926e00 100644
--- a/wx+/grid.h
+++ b/wx+/grid.h
@@ -18,7 +18,7 @@
namespace zen
{
-typedef enum { DUMMY_COLUMN_TYPE = static_cast<size_t>(-1) } ColumnType;
+typedef enum { DUMMY_COLUMN_TYPE = static_cast<unsigned int>(-1) } ColumnType;
//----- Events -----------------------------------------------------------------------------------------------
extern const wxEventType EVENT_GRID_COL_LABEL_MOUSE_LEFT; //generates: GridClickEvent
bgstack15