- Timestamp:
- 06/23/11 14:23:57 (12 years ago)
- Branches:
- master, qt5
- Children:
- 5438514
- Parents:
- f09a1b9
- Location:
- src/mvc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mvc/eventmodel.cpp
rf09a1b9 ra0f3e32 200 200 void EventModel::clearModel() 201 201 { 202 qDebug() << __PRETTY_FUNCTION__ << this << mEvents.count();202 // qDebug() << __PRETTY_FUNCTION__ << this << mEvents.count(); 203 203 mGroups.clear(); 204 204 mEvents.clear(); -
src/mvc/eventmodel.h
rf09a1b9 ra0f3e32 27 27 { 28 28 public: 29 static const QString COMMA_SEPARATOR; 29 static const QString COMMA_SEPARATOR; // ", " 30 30 public: 31 31 EventModel(); … … 50 50 int firstEventIndex) : 51 51 52 mTitle(title), 53 mFirstEventIndex(firstEventIndex), 54 mChildCount(0) 52 mTitle(title), // e.g. "16:00 - 17:30" 53 mFirstEventIndex(firstEventIndex), // first index within mEvents 54 mChildCount(0) // number of events in mEvents 55 55 {} 56 56
Note: See TracChangeset
for help on using the changeset viewer.