Changeset 14380 for trunk/qt/filterbar.cc
- Timestamp:
- Dec 13, 2014, 9:04:10 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/qt/filterbar.cc
r14379 r14380 462 462 connect (myActivityCombo, SIGNAL (currentIndexChanged (int)), this, SLOT (onActivityIndexChanged (int))); 463 463 connect (myTrackerCombo, SIGNAL (currentIndexChanged (int)), this, SLOT (onTrackerIndexChanged (int))); 464 connect (&myFilter, SIGNAL (rowsInserted ( const QModelIndex&,int,int)), this, SLOT (refreshCountLabel ()));465 connect (&myFilter, SIGNAL (rowsRemoved ( const QModelIndex&,int,int)), this, SLOT (refreshCountLabel ()));464 connect (&myFilter, SIGNAL (rowsInserted (QModelIndex, int, int)), this, SLOT (refreshCountLabel ())); 465 connect (&myFilter, SIGNAL (rowsRemoved (QModelIndex, int, int)), this, SLOT (refreshCountLabel ())); 466 466 connect (&myTorrents, SIGNAL (modelReset ()), this, SLOT (onTorrentModelReset ())); 467 connect (&myTorrents, SIGNAL (rowsInserted ( const QModelIndex&,int,int)), this, SLOT (onTorrentModelRowsInserted (const QModelIndex&,int,int)));468 connect (&myTorrents, SIGNAL (rowsRemoved ( const QModelIndex&,int,int)), this, SLOT (onTorrentModelRowsRemoved (const QModelIndex&,int,int)));469 connect (&myTorrents, SIGNAL (dataChanged ( const QModelIndex&,const QModelIndex&)), this, SLOT (onTorrentModelDataChanged (const QModelIndex&,const QModelIndex&)));467 connect (&myTorrents, SIGNAL (rowsInserted (QModelIndex, int, int)), this, SLOT (onTorrentModelRowsInserted (QModelIndex, int, int))); 468 connect (&myTorrents, SIGNAL (rowsRemoved (QModelIndex, int, int)), this, SLOT (onTorrentModelRowsRemoved (QModelIndex, int, int))); 469 connect (&myTorrents, SIGNAL (dataChanged (QModelIndex, QModelIndex)), this, SLOT (onTorrentModelDataChanged (QModelIndex, QModelIndex))); 470 470 connect (myRecountTimer, SIGNAL (timeout ()), this, SLOT (recount ())); 471 471
Note: See TracChangeset
for help on using the changeset viewer.