소스 검색

Fixed ambiguous constructors

Andreas Fetzer 11 년 전
부모
커밋
e792a224eb
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      Libs/DICOM/Widgets/ctkDICOMTableView.h

+ 2 - 2
Libs/DICOM/Widgets/ctkDICOMTableView.h

@@ -57,7 +57,7 @@ public:
    * @param parent the parent widget
    * @param queryTableName the name of the table of the ctkDICOMDatabase which shall be displayed
    */
-  explicit ctkDICOMTableView(QString queryTableName = "Patients", QWidget* parent = 0);
+  explicit ctkDICOMTableView(QString queryTableName, QWidget* parent = 0);
 
   /**
    * ctor with tablename and database as parameter
@@ -65,7 +65,7 @@ public:
    * @param parent the parent widget
    * @param queryTableName the name of the table of the ctkDICOMDatabase which shall be displayed
    */
-  explicit ctkDICOMTableView (ctkDICOMDatabase* dicomDataBase, QString queryTableName = "Patients", QWidget* parent = 0);
+  explicit ctkDICOMTableView (ctkDICOMDatabase* dicomDataBase, QString queryTableName, QWidget* parent = 0);
 
   virtual ~ctkDICOMTableView();