Skip to content

Commit

Permalink
fix editting connection setup compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
dannagle committed Dec 31, 2023
1 parent 2bf7d58 commit 8d2a0be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ MainWindow::MainWindow(QWidget *parent) :
connect(twoVerify, &QCheckBox::toggled, &packetNetwork , &PacketNetwork::on_twoVerify_StateChanged);

//hostName
connect(ui->hostName, QLineEdit::editingFinished, this, MainWindow::on_hostName_editingFinished);
connect(ui->hostName, &QLineEdit::editingFinished, this, &MainWindow::on_hostName_editingFinished);


//cipher comboBox
Expand Down

0 comments on commit 8d2a0be

Please sign in to comment.