Changeset c9fa699 in confclerk_git
- Timestamp:
- 01/27/10 22:40:15 (13 years ago)
- Branches:
- master, qt5
- Children:
- 9172ee8
- Parents:
- 0401cc2
- Location:
- src/gui
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/gui/nowtabcontainer.cpp
r0401cc2 rc9fa699 13 13 { 14 14 Q_UNUSED( aDate ); 15 15 16 static_cast<EventModel*>(treeView->model())->loadNowEvents( aConferenceId ); 16 treeView->setAllExpanded(true);17 dayNavigator->hide(); 17 18 } 18 19 … … 21 22 updateTreeView( QDate() ); 22 23 } 24 25 void NowTabContainer::updateTreeView(const QDate &aDate) 26 { 27 TabContainer::updateTreeView(aDate); 28 treeView->setAllExpanded(true); 29 } 30 -
src/gui/nowtabcontainer.h
r0401cc2 rc9fa699 15 15 virtual void loadEvents( const QDate &aDate, const int aConferenceId ); 16 16 17 protected slots: 18 virtual void updateTreeView(const QDate &aDate); 19 17 20 private slots: 18 21 void timerUpdateTreeView();
Note: See TracChangeset
for help on using the changeset viewer.