aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/thread/CtxCheckThread.h
diff options
context:
space:
mode:
authorSaturneric <[email protected]>2022-01-23 07:36:55 +0000
committerSaturneric <[email protected]>2022-01-23 07:38:54 +0000
commit247b5b8f7ffb5cf7df5d4bc0e4fb786152934569 (patch)
treedaa5b6f39a1a4c07d4fa10a478d159e17059609c /src/ui/thread/CtxCheckThread.h
parent<refactor>(ui): tidy up codes and comments. (diff)
downloadGpgFrontend-247b5b8f7ffb5cf7df5d4bc0e4fb786152934569.tar.gz
GpgFrontend-247b5b8f7ffb5cf7df5d4bc0e4fb786152934569.zip
<refactor>(ui): tidy up codes and comments.
1. tidy up thread.
Diffstat (limited to '')
-rw-r--r--src/ui/thread/CtxCheckThread.h18
1 files changed, 17 insertions, 1 deletions
diff --git a/src/ui/thread/CtxCheckThread.h b/src/ui/thread/CtxCheckThread.h
index d7320f3f..36281525 100644
--- a/src/ui/thread/CtxCheckThread.h
+++ b/src/ui/thread/CtxCheckThread.h
@@ -28,15 +28,31 @@
#define GPGFRONTEND_CTXCHECKTRHEAD_H
#include "ui/GpgFrontendUI.h"
namespace GpgFrontend::UI {
+/**
+ * @brief
+ *
+ */
class CtxCheckThread : public QThread {
Q_OBJECT
public:
+ /**
+ * @brief Construct a new Ctx Check Thread object
+ *
+ */
CtxCheckThread();
signals:
- void signalGnupgNotInstall();
+ /**
+ * @brief
+ *
+ */
+ void SignalGnupgNotInstall();
protected:
+ /**
+ * @brief
+ *
+ */
void run() override;
};
} // namespace GpgFrontend::UI