Changeset 56210
- Timestamp:
- 10/10/08 03:02:35 (6 weeks ago)
- Location:
- wxWidgets/trunk
- Files:
-
- 2 modified
-
include/wx/generic/dataview.h (modified) (2 diffs)
-
src/generic/datavgen.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wxWidgets/trunk/include/wx/generic/dataview.h
r56204 r56210 390 390 wxDataViewCtrl() : wxScrollHelperNative(this) 391 391 { 392 //No sorting column at start, I think393 m_sortingColumn = NULL;394 392 Init(); 395 393 } … … 401 399 : wxScrollHelperNative(this) 402 400 { 403 m_sortingColumn = NULL;404 401 Create(parent, id, pos, size, style, validator ); 405 402 } -
wxWidgets/trunk/src/generic/datavgen.cpp
r56208 r56210 4094 4094 m_cols.DeleteContents(true); 4095 4095 m_notifier = NULL; 4096 4097 // No sorting column at start 4098 m_sortingColumn = NULL; 4099 m_headerArea = NULL; 4096 4100 } 4097 4101 … … 4103 4107 style |= wxBORDER_SUNKEN; 4104 4108 4109 Init(); 4110 4105 4111 if (!wxControl::Create( parent, id, pos, size, 4106 4112 style | wxScrolledWindowStyle, validator)) … … 4108 4114 4109 4115 SetInitialSize(size); 4110 4111 Init();4112 4116 4113 4117 #ifdef __WXMAC__
