Skip to content

Commit cc96ef6

Browse files
Minor cleanup.
1 parent b2489c0 commit cc96ef6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mainwindow.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ void MainWindow::on_pushButtonSign_clicked()
290290
++failures;
291291
error = GetLastError();
292292

293-
output.append(QString("❌ Failed to sign \"%1\" - Error %2\nPlease make sure that you have signtool.exe installed and available in your $PATH").arg(filePath, error));
293+
output.append(QString("❌ Failed to sign \"%1\" - Error %2\nPlease make sure that you have signtool.exe installed and available in your $PATH\n").arg(filePath).arg(error));
294294

295295
ui->textEditSignOutput->setText(output);
296296
repaint();
@@ -377,7 +377,7 @@ void MainWindow::on_pushButtonVerifyFiles_clicked()
377377
++failures;
378378
error = GetLastError();
379379

380-
output.append(QString("\"%1\" - Error %2\nPlease make sure that you have signtool.exe installed and available in your $PATH").arg(filePath, error));
380+
output.append(QString("\"%1\" - Error %2\nPlease make sure that you have signtool.exe installed and available in your $PATH\n").arg(filePath).arg(error));
381381

382382
ui->textEditFilesVerificationOutput->setText(output);
383383
repaint();

0 commit comments

Comments
 (0)