summaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
authorRuben Pollan <meskio@sindominio.net>2020-08-04 12:55:47 +0200
committerRuben Pollan <meskio@sindominio.net>2020-08-13 17:16:07 +0200
commitabb65c7fcf570e69480ca70c92d4e271a78ffee2 (patch)
treefddab05a9c5fc4e10a2f3c31500283174a43720b /gui
parent5ba62c56b2a94b9f5ae06b150713f84d5a3144fa (diff)
Unblock is not needed switch off does unblock bitmask
Diffstat (limited to 'gui')
-rw-r--r--gui/backend.go5
-rw-r--r--gui/handlers.cpp5
-rw-r--r--gui/handlers.h1
3 files changed, 0 insertions, 11 deletions
diff --git a/gui/backend.go b/gui/backend.go
index af29ec6..536ade3 100644
--- a/gui/backend.go
+++ b/gui/backend.go
@@ -32,11 +32,6 @@ func SwitchOff() {
backend.SwitchOff()
}
-//export Unblock
-func Unblock() {
- backend.Unblock()
-}
-
//export Quit
func Quit() {
backend.Quit()
diff --git a/gui/handlers.cpp b/gui/handlers.cpp
index de54161..ab64afb 100644
--- a/gui/handlers.cpp
+++ b/gui/handlers.cpp
@@ -30,11 +30,6 @@ void Backend::switchOff()
SwitchOff();
}
-void Backend::unblock()
-{
- Unblock();
-}
-
void Backend::donateAccepted()
{
DonateAccepted();
diff --git a/gui/handlers.h b/gui/handlers.h
index 8f89279..62a733d 100644
--- a/gui/handlers.h
+++ b/gui/handlers.h
@@ -34,7 +34,6 @@ public slots:
QString getVersion();
void switchOn();
void switchOff();
- void unblock();
void donateAccepted();
void quit();
};