diff options
Diffstat (limited to 'src/core/model/GpgKeyTableModel.h')
-rw-r--r-- | src/core/model/GpgKeyTableModel.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/core/model/GpgKeyTableModel.h b/src/core/model/GpgKeyTableModel.h index a2c64fd0..0529bf7b 100644 --- a/src/core/model/GpgKeyTableModel.h +++ b/src/core/model/GpgKeyTableModel.h @@ -186,7 +186,7 @@ class GPGFRONTEND_CORE_EXPORT GpgKeyTableModel : public QAbstractTableModel { * * @return auto */ - auto GetAllKeyIds() -> GpgKeyIDList; + auto GetAllKeyIds() -> KeyIdArgsList; /** * @brief Get the Key ID By Row object @@ -216,11 +216,7 @@ class GPGFRONTEND_CORE_EXPORT GpgKeyTableModel : public QAbstractTableModel { QStringList column_headers_; int gpg_context_channel_; -#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 4) - QList<bool> key_check_state_; -#else - QVector<bool> key_check_state_; -#endif + QContainer<bool> key_check_state_; }; } // namespace GpgFrontend
\ No newline at end of file |