浏览代码

Rework of NewFlight Dialog construction and setup

fiffty-50 4 年之前
父节点
当前提交
463114452f
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      newflight.cpp

+ 1 - 1
newflight.cpp

@@ -193,10 +193,10 @@ NewFlight::NewFlight(QWidget *parent, QVector<QStringList> completionLists) :
     ui(new Ui::NewFlight)
 {
     ui->setupUi(this);
+
     // Set up Line Edits with QValidators, QCompleters and set Max length
     auto line_edits = ui->flightDataTab->findChildren<QLineEdit*>() +
                 ui->extraTimes->findChildren<QLineEdit*>();
-    DEBUG(line_edits);
         for(auto line_edit : line_edits)
         {
             setupLineEdit(line_edit, completionLists);