diff options
author | Saturneric <[email protected]> | 2021-07-14 17:39:46 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-07-14 17:39:46 +0000 |
commit | a8080780d812d455a2523fdf55f927a7c3f5fb63 (patch) | |
tree | 9dc8d2dcfc87a1d103c34e85f769d08d315ce88e /src/ui/main_window/MainWindowSlotUI.cpp | |
parent | Update Document. (diff) | |
parent | Merge pull request #12 from saturneric/develop (diff) | |
download | GpgFrontend-a8080780d812d455a2523fdf55f927a7c3f5fb63.tar.gz GpgFrontend-a8080780d812d455a2523fdf55f927a7c3f5fb63.zip |
Merge from github/main.
Diffstat (limited to 'src/ui/main_window/MainWindowSlotUI.cpp')
-rw-r--r-- | src/ui/main_window/MainWindowSlotUI.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/ui/main_window/MainWindowSlotUI.cpp b/src/ui/main_window/MainWindowSlotUI.cpp index 189ead53..d95a9bfe 100644 --- a/src/ui/main_window/MainWindowSlotUI.cpp +++ b/src/ui/main_window/MainWindowSlotUI.cpp @@ -25,7 +25,11 @@ #include "MainWindow.h" void MainWindow::slotAbout() { - new AboutDialog(this); + new AboutDialog(0, this); +} + +void MainWindow::slotCheckUpdate() { + new AboutDialog(2, this); } void MainWindow::slotSetStatusBarText(const QString &text) { |