Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
Kleopatra
Commits
eb7a1909
Commit
eb7a1909
authored
Feb 04, 2021
by
Ingo Klöcker
Browse files
Adapt to changed interface of KeyGroup
GnuPG-bug-id: 5175, 5239
parent
26b6b0ab
Changes
2
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
eb7a1909
...
...
@@ -15,7 +15,7 @@ option(DISABLE_KWATCHGNUPG "Don't build the kwatchgnupg tool [default=OFF]" OFF)
# Standalone build. Find / include everything necessary.
set
(
KF5_MIN_VERSION
"5.78.0"
)
set
(
KMIME_VERSION
"5.16.40"
)
set
(
LIBKLEO_VERSION
"5.16.4
8
"
)
set
(
LIBKLEO_VERSION
"5.16.4
9
"
)
set
(
QT_REQUIRED_VERSION
"5.14.0"
)
set
(
GPGME_REQUIRED_VERSION
"1.13.1"
)
...
...
src/dialogs/groupdetailsdialog.cpp
View file @
eb7a1909
...
...
@@ -130,5 +130,6 @@ void GroupDetailsDialog::setGroup(const KeyGroup &group)
{
d
->
group
=
group
;
d
->
ui
.
groupNameLabel
->
setText
(
group
.
name
());
d
->
ui
.
treeView
->
setKeys
(
group
.
keys
());
const
KeyGroup
::
Keys
&
keys
=
group
.
keys
();
d
->
ui
.
treeView
->
setKeys
(
std
::
vector
<
GpgME
::
Key
>
(
keys
.
cbegin
(),
keys
.
cend
()));
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment