Changeset 0401cc2 in confclerk_git
- Timestamp:
- 01/27/10 22:33:36 (13 years ago)
- Branches:
- master, qt5
- Children:
- c9fa699
- Parents:
- d49254d
- Location:
- src/gui
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/gui/conflictdialogcontainer.cpp
rd49254d r0401cc2 9 9 void ConflictDialogContainer::loadEvents( const QDate &aDate, const int aConferenceId ) 10 10 { 11 Q_UNUSED(aDate); 12 11 13 static_cast<EventModel*>(treeView->model())->loadConflictEvents( mEventId, aConferenceId ); 12 14 dayNavigator->hide(); 13 15 } 14 16 17 void ConflictDialogContainer::updateTreeView(const QDate &aDate) 18 { 19 TabContainer::updateTreeView(aDate); 20 treeView->setAllExpanded(true); 21 } 22 -
src/gui/conflictdialogcontainer.h
rd49254d r0401cc2 17 17 virtual void loadEvents( const QDate &aDate, const int aConferenceId ); 18 18 19 protected slots: 20 virtual void updateTreeView(const QDate &aDate); 21 19 22 private: 20 23 int mEventId; -
src/gui/tabcontainer.h
rd49254d r0401cc2 33 33 34 34 protected slots: 35 v oid updateTreeView(const QDate &aDate);35 virtual void updateTreeView(const QDate &aDate); 36 36 void itemClicked(const QModelIndex &aIndex); 37 37 void displayMap(const QModelIndex &aIndex);
Note: See TracChangeset
for help on using the changeset viewer.