Changeset 14380 for trunk/qt/details.cc
- Timestamp:
- Dec 13, 2014, 9:04:10 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/qt/details.cc
r14379 r14380 1286 1286 myTrackerView->setAlternatingRowColors (true); 1287 1287 myTrackerView->setItemDelegate (myTrackerDelegate = new TrackerDelegate ()); 1288 connect (myTrackerView->selectionModel (), SIGNAL (selectionChanged ( const QItemSelection&, const QItemSelection&)), this, SLOT (onTrackerSelectionChanged ()));1288 connect (myTrackerView->selectionModel (), SIGNAL (selectionChanged (QItemSelection, QItemSelection)), this, SLOT (onTrackerSelectionChanged ())); 1289 1289 h->addWidget (myTrackerView, 1); 1290 1290 … … 1385 1385 myFileTreeView = new FileTreeView (); 1386 1386 1387 connect (myFileTreeView, SIGNAL ( priorityChanged ( const QSet<int>&, int)),1388 this, SLOT ( onFilePriorityChanged ( const QSet<int>&, int)));1389 1390 connect (myFileTreeView, SIGNAL ( wantedChanged ( const QSet<int>&, bool)),1391 this, SLOT ( onFileWantedChanged ( const QSet<int>&, bool)));1392 1393 connect (myFileTreeView, SIGNAL (pathEdited ( const QString&, const QString&)),1394 this, SLOT (onPathEdited ( const QString&, const QString&)));1395 1396 connect (myFileTreeView, SIGNAL (openRequested ( const QString&)),1397 this, SLOT (onOpenRequested ( const QString&)));1387 connect (myFileTreeView, SIGNAL ( priorityChanged (QSet<int>, int)), 1388 this, SLOT ( onFilePriorityChanged (QSet<int>, int))); 1389 1390 connect (myFileTreeView, SIGNAL ( wantedChanged (QSet<int>, bool)), 1391 this, SLOT ( onFileWantedChanged (QSet<int>, bool))); 1392 1393 connect (myFileTreeView, SIGNAL (pathEdited (QString, QString)), 1394 this, SLOT (onPathEdited (QString, QString))); 1395 1396 connect (myFileTreeView, SIGNAL (openRequested (QString)), 1397 this, SLOT (onOpenRequested (QString))); 1398 1398 1399 1399 return myFileTreeView;
Note: See TracChangeset
for help on using the changeset viewer.