diff options
| -rw-r--r-- | mainwindow.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mainwindow.cpp b/mainwindow.cpp index 4871676..a779614 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -34,6 +34,9 @@ void MainWindow::on_pushButtonDecrypt_clicked() hybridcrypt.decrypt(inFilename, outFilename); statusBar()->showMessage(tr("Entschlüsselung war erfolgreich."), messageTimeout); + + // Zeige entschlüsselte Datei + ui->lineEditFilePath->setText(outFilename); } catch (CryptException e) { |
