aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/main_window/MainWindowFileSlotFunction.cpp
diff options
context:
space:
mode:
authorSaturneric <[email protected]>2021-08-15 15:00:19 +0000
committerSaturneric <[email protected]>2021-08-15 15:00:19 +0000
commit805f8b2f36007317a750cf6aecb633ad6ad2d4e4 (patch)
tree830b8c558dcb162c49d8609685e5c152a15afcfc /src/ui/main_window/MainWindowFileSlotFunction.cpp
parentBeautify UI; Improve Functions; (diff)
downloadGpgFrontend-805f8b2f36007317a750cf6aecb633ad6ad2d4e4.tar.gz
GpgFrontend-805f8b2f36007317a750cf6aecb633ad6ad2d4e4.zip
Bugs Fixed; Improve Functions;
Diffstat (limited to 'src/ui/main_window/MainWindowFileSlotFunction.cpp')
-rw-r--r--src/ui/main_window/MainWindowFileSlotFunction.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ui/main_window/MainWindowFileSlotFunction.cpp b/src/ui/main_window/MainWindowFileSlotFunction.cpp
index 5e0a3e40..914d1b5e 100644
--- a/src/ui/main_window/MainWindowFileSlotFunction.cpp
+++ b/src/ui/main_window/MainWindowFileSlotFunction.cpp
@@ -85,7 +85,7 @@ void MainWindow::slotFileEncrypt() {
if_error = true;
}
});
- connect(thread, SIGNAL(finished(QPrivateSignal)), thread, SLOT(deleteLater()));
+ connect(thread, SIGNAL(finished()), thread, SLOT(deleteLater()));
thread->start();
auto *dialog = new WaitingDialog(tr("Encrypting"), this);
@@ -166,7 +166,7 @@ void MainWindow::slotFileDecrypt() {
if_error = true;
}
});
- connect(thread, SIGNAL(finished(QPrivateSignal)), thread, SLOT(deleteLater()));
+ connect(thread, SIGNAL(finished()), thread, SLOT(deleteLater()));
thread->start();
auto *dialog = new WaitingDialog("Decrypting", this);
@@ -262,7 +262,7 @@ void MainWindow::slotFileSign() {
if_error = true;
}
});
- connect(thread, SIGNAL(finished(QPrivateSignal)), thread, SLOT(deleteLater()));
+ connect(thread, SIGNAL(finished()), thread, SLOT(deleteLater()));
thread->start();
auto *dialog = new WaitingDialog(tr("Signing"), this);
@@ -347,7 +347,7 @@ void MainWindow::slotFileVerify() {
if_error = true;
}
});
- connect(thread, SIGNAL(finished(QPrivateSignal)), thread, SLOT(deleteLater()));
+ connect(thread, SIGNAL(finished()), thread, SLOT(deleteLater()));
thread->start();
auto *dialog = new WaitingDialog(tr("Verifying"), this);
@@ -467,7 +467,7 @@ void MainWindow::slotFileEncryptSign() {
if_error = true;
}
});
- connect(thread, SIGNAL(finished(QPrivateSignal)), thread, SLOT(deleteLater()));
+ connect(thread, SIGNAL(finished()), thread, SLOT(deleteLater()));
thread->start();
auto *dialog = new WaitingDialog(tr("Encrypting and Signing"), this);
@@ -544,7 +544,7 @@ void MainWindow::slotFileDecryptVerify() {
if_error = true;
}
});
- connect(thread, SIGNAL(finished(QPrivateSignal)), thread, SLOT(deleteLater()));
+ connect(thread, SIGNAL(finished()), thread, SLOT(deleteLater()));
thread->start();