소스 검색

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