summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaciej S. Szmigiero <mail@maciej.szmigiero.name>2019-09-28 00:07:35 +0200
committerMaciej S. Szmigiero <mail@maciej.szmigiero.name>2019-09-28 00:51:36 +0200
commit12cb01e7811fd43ed4dcb7d58cf04740efd00f34 (patch)
tree9b1d955cabb5091b5f83f3dcb3ff9a0d2f5f9d2c
parentdf43cec8642813a9ec57525f40e95d64501246e5 (diff)
Remove unused uiEnabled signal and setTextTextBrowser() function from MainWindow
-rw-r--r--src/mainwindow.cpp4
-rw-r--r--src/mainwindow.h2
2 files changed, 0 insertions, 6 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index a3b1c9c5..cd21505f 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -203,10 +203,6 @@ void MainWindow::cleanKeygenDialog() {
this->keygen = nullptr;
}
-void MainWindow::setTextTextBrowser(const QString &text) {
- ui->textBrowser->setText(text);
-}
-
void MainWindow::flashText(const QString &text, const bool isError,
const bool isHtml) {
if (isError)
diff --git a/src/mainwindow.h b/src/mainwindow.h
index 32820e77..10f07df7 100644
--- a/src/mainwindow.h
+++ b/src/mainwindow.h
@@ -49,7 +49,6 @@ public:
void userDialog(QString = "");
void config();
- void setTextTextBrowser(const QString &text);
void setUiElementsEnabled(bool state);
void flashText(const QString &text, const bool isError,
const bool isHtml = false);
@@ -66,7 +65,6 @@ protected:
bool eventFilter(QObject *obj, QEvent *event);
signals:
- void uiEnabled(bool state);
void passShowHandlerFinished(QString output);
void passGitInitNeeded();
void generateGPGKeyPair(QString batch);