Browse Source

Rework of NewFlight Dialog construction and setup

fiffty-50 4 years ago
parent
commit
463114452f
1 changed files with 1 additions and 1 deletions
  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);