aboutsummaryrefslogtreecommitdiffstats
path: root/src/core/model/GpgKeyGroup.h
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2025-04-16 18:05:00 +0000
committersaturneric <[email protected]>2025-04-16 18:05:00 +0000
commit272cf34f21ab1741d24673a7e3b7c95567a74cec (patch)
tree4497435e41a8bbdd7560cee57b2c8c4171099951 /src/core/model/GpgKeyGroup.h
parentfix: found bugs (diff)
downloadGpgFrontend-272cf34f21ab1741d24673a7e3b7c95567a74cec.tar.gz
GpgFrontend-272cf34f21ab1741d24673a7e3b7c95567a74cec.zip
fix: testing and solve bugs found
Diffstat (limited to 'src/core/model/GpgKeyGroup.h')
-rw-r--r--src/core/model/GpgKeyGroup.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/core/model/GpgKeyGroup.h b/src/core/model/GpgKeyGroup.h
index d3ae8e03..887fd13f 100644
--- a/src/core/model/GpgKeyGroup.h
+++ b/src/core/model/GpgKeyGroup.h
@@ -33,6 +33,8 @@
namespace GpgFrontend {
+class GpgKeyGroupGetter;
+
/**
* @brief
*
@@ -248,7 +250,7 @@ class GPGFRONTEND_CORE_EXPORT GpgKeyGroup : public GpgAbstractKey {
* @brief Set the Disabled object
*
*/
- void SetDisabled(bool);
+ void SetKeyGroupGetter(GpgKeyGroupGetter*);
private:
QString id_;
@@ -257,7 +259,8 @@ class GPGFRONTEND_CORE_EXPORT GpgKeyGroup : public GpgAbstractKey {
QString comment_;
QStringList key_ids_;
QDateTime creation_time_;
- bool disabled_;
+
+ GpgKeyGroupGetter* getter_ = nullptr;
};
} // namespace GpgFrontend