Skip to content
Snippets Groups Projects
Unverified Commit abb65c7f authored by meskio's avatar meskio :tent:
Browse files

Unblock is not needed switch off does unblock bitmask

parent 5ba62c56
Branches
Tags
1 merge request!104Failures
......@@ -32,11 +32,6 @@ func SwitchOff() {
backend.SwitchOff()
}
//export Unblock
func Unblock() {
backend.Unblock()
}
//export Quit
func Quit() {
backend.Quit()
......
......@@ -30,11 +30,6 @@ void Backend::switchOff()
SwitchOff();
}
void Backend::unblock()
{
Unblock();
}
void Backend::donateAccepted()
{
DonateAccepted();
......
......@@ -34,7 +34,6 @@ public slots:
QString getVersion();
void switchOn();
void switchOff();
void unblock();
void donateAccepted();
void quit();
};
......
......@@ -24,11 +24,6 @@ func SwitchOff() {
go stopVPN()
}
func Unblock() {
//TODO -
fmt.Println("unblock... [not implemented]")
}
func Quit() {
if ctx.Status != off {
go setStatus(stopping)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment