Changeset d49254d for src/gui/tabcontainer.cpp
- Timestamp:
- 01/27/10 22:08:37 (13 years ago)
- Branches:
- master, qt5
- Children:
- 0401cc2
- Parents:
- 21d7cc0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/gui/tabcontainer.cpp
r21d7cc0 rd49254d 34 34 if(!Conference::getAll().count()) // no conference(s) in the DB 35 35 { 36 dayNavigator->hide(); // hide DayNavigatorWidget36 dayNavigator->hide(); 37 37 } 38 38 else … … 86 86 void TabContainer::displayConflicts(const QModelIndex &aIndex) 87 87 { 88 Q_UNUSED(aIndex); 89 90 ConflictsDialog dialog; 88 ConflictsDialog dialog(static_cast<Event*>(aIndex.internalPointer())->id(),this); 91 89 connect(&dialog, SIGNAL(eventHasChanged(int)), this, SIGNAL(eventHasChanged(int))); 92 90 dialog.exec();
Note: See TracChangeset
for help on using the changeset viewer.