소스 검색

Fixed duplicate connection to Qt signal/slots in ctkDICOMTableView

The reason was an unnecessary call of setUpTableView which performed the connection
to the signal/slots every time when invoked.
Andreas Fetzer 10 년 전
부모
커밋
65420ed0eb
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 1
      Libs/DICOM/Widgets/ctkDICOMTableView.cpp

+ 0 - 1
Libs/DICOM/Widgets/ctkDICOMTableView.cpp

@@ -382,7 +382,6 @@ void ctkDICOMTableView::setTableSectionSize(int size)
 {
   Q_D(ctkDICOMTableView);
   d->tblDicomDatabaseView->verticalHeader()->setDefaultSectionSize(size);
-  d->setUpTableView();
 }
 
 //------------------------------------------------------------------------------