diff options
author | kali kaneko (leap communications) <kali@leap.se> | 2020-06-12 12:40:59 +0200 |
---|---|---|
committer | kali kaneko (leap communications) <kali@leap.se> | 2020-06-12 20:03:02 +0200 |
commit | 971c28f6563de35b1d66401d6919f86787af0611 (patch) | |
tree | 81ded50db137663acf6837e05e6df74507d346da /gui/handlers.cpp | |
parent | 57b7f111c27f57085a2c64c37c5c5a94ee1d0f02 (diff) |
[feat] working donate dialog
Signed-off-by: kali kaneko (leap communications) <kali@leap.se>
Diffstat (limited to 'gui/handlers.cpp')
-rw-r--r-- | gui/handlers.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gui/handlers.cpp b/gui/handlers.cpp index 79fbb58..e37de2d 100644 --- a/gui/handlers.cpp +++ b/gui/handlers.cpp @@ -23,8 +23,14 @@ void Backend::unblock() Unblock(); } +void Backend::toggleDonate() +{ + ToggleDonate(); +} + void Backend::quit() { Quit(); emit this->quitDone(); } + |