浏览代码

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();