diff options
Diffstat (limited to 'src/core/model/GpgKeyTableModel.cpp')
-rw-r--r-- | src/core/model/GpgKeyTableModel.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/model/GpgKeyTableModel.cpp b/src/core/model/GpgKeyTableModel.cpp index e2a4fe37..d81c3b56 100644 --- a/src/core/model/GpgKeyTableModel.cpp +++ b/src/core/model/GpgKeyTableModel.cpp @@ -1,5 +1,5 @@ /** - * Copyright (C) 2021 Saturneric <[email protected]> + * Copyright (C) 2021-2024 Saturneric <[email protected]> * * This file is part of GpgFrontend. * @@ -51,8 +51,8 @@ auto GpgKeyTableModel::columnCount(const QModelIndex & /*parent*/) const return 11; } -auto GpgKeyTableModel::data(const QModelIndex &index, int role) const - -> QVariant { +auto GpgKeyTableModel::data(const QModelIndex &index, + int role) const -> QVariant { if (!index.isValid() || buffered_keys_.empty()) return {}; if (role == Qt::TextAlignmentRole) { |