Changeset 2937
- Timestamp:
- 04/26/06 11:42:28 (3 years ago)
- Files:
-
- hydranode/hngui/transfertabs.cpp (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
hydranode/hngui/transfertabs.cpp
r2933 r2937 67 67 } else if (col == 1) { 68 68 return text(1).toUInt() < other.text(1).toUInt(); 69 } 69 } 70 70 return QTreeWidgetItem::operator<(other); 71 71 } … … 86 86 87 87 CustomHeader *h = new CustomHeader( 88 m_commentFrame->commentList->header()->orientation(), 88 m_commentFrame->commentList->header()->orientation(), 89 89 m_commentFrame->commentList->header()->parentWidget() 90 90 ); 91 91 h->disableColumnSelection(); 92 connect(h, SIGNAL(restoreDefaults()), SLOT(init()));93 92 m_commentFrame->commentList->setHeader(h); 94 93 h->setObjectName("comments"); … … 143 142 connect(m_ui->typeSelect, SIGNAL(clicked()), SLOT(showTypeMenu())); 144 143 connect( 145 m_detailsBar->destButton, SIGNAL(clicked()), 144 m_detailsBar->destButton, SIGNAL(clicked()), 146 145 SLOT(changeFileDest()) 147 146 ); 148 147 connect( 149 m_detailsBar->setButton, SIGNAL(clicked()), 148 m_detailsBar->setButton, SIGNAL(clicked()), 150 149 SLOT(renameClicked()) 151 150 ); … … 153 152 connect(m_commentTimer, SIGNAL(timeout()), SLOT(getMoreComments())); 154 153 connect( 155 m_ui->allList, SIGNAL(namesUpdated(Engine::DownloadInfoPtr)), 154 m_ui->allList, SIGNAL(namesUpdated(Engine::DownloadInfoPtr)), 156 155 SLOT(updateComments(Engine::DownloadInfoPtr)) 157 156 ); … … 295 294 if (ret == fromFile) { 296 295 QString s = QFileDialog::getOpenFileName( 297 this, "Select file to open", "", 296 this, "Select file to open", "", 298 297 "Download packages (*.torrent)" 299 298 ); … … 432 431 int h = m_ui->actionBar->height(); 433 432 if ( 434 m_actionBack.width() != w || 433 m_actionBack.width() != w || 435 434 m_actionBack.height() != h 436 435 ) { … … 448 447 int h = m_ui->detailsBar->height() - 2; 449 448 if ( 450 m_detailsBack.width() != w || 449 m_detailsBack.width() != w || 451 450 m_detailsBack.height() != h 452 451 ) {
