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 aefcb549..6b6ac8a0 100644
--- a/wx+/grid.h
+++ b/wx+/grid.h
@@ -42,7 +42,7 @@ struct GridClickEvent : public wxMouseEvent
virtual wxEvent* Clone() const { return new GridClickEvent(*this); }
const ptrdiff_t row_; //-1 for invalid position, >= rowCount if out of range
- const ColumnType colType_;
+ const ColumnType colType_; //may be DUMMY_COLUMN_TYPE
};
struct GridColumnResizeEvent : public wxCommandEvent
bgstack15