]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/dataview/mymodels.cpp
Add ellipsization support to wxDataViewCtrl.
[wxWidgets.git] / samples / dataview / mymodels.cpp
index 4be852d6ff22811e4ee2f6231a5d5d02c9ed965d..0424b2493693a06248b53b9f12b1d901e48ec74b 100644 (file)
@@ -338,7 +338,8 @@ MyListModel::MyListModel() :
     static const unsigned NUMBER_REAL_ITEMS = 100;
 
     m_textColValues.reserve(NUMBER_REAL_ITEMS);
-    for (unsigned int i = 0; i < NUMBER_REAL_ITEMS; i++)
+    m_textColValues.push_back("first row with long label to test ellipsization");
+    for (unsigned int i = 1; i < NUMBER_REAL_ITEMS; i++)
     {
         m_textColValues.push_back(wxString::Format("real row %d", i));
     }