Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
PIM
PIM MailCommon
Commits
d0917d84
Commit
d0917d84
authored
Jul 19, 2020
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Constify
parent
5347274b
Pipeline
#27699
passed with stage
in 74 minutes and 57 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
src/filter/kmfilteraccountlist.cpp
src/filter/kmfilteraccountlist.cpp
+1
-2
No files found.
src/filter/kmfilteraccountlist.cpp
View file @
d0917d84
...
...
@@ -33,8 +33,7 @@ KMFilterAccountList::KMFilterAccountList(QWidget *parent)
:
QTreeWidget
(
parent
)
{
setColumnCount
(
2
);
QStringList
headerNames
;
headerNames
<<
i18n
(
"Account Name"
)
<<
i18n
(
"Type"
);
const
QStringList
headerNames
{
i18n
(
"Account Name"
),
i18n
(
"Type"
)};
setHeaderItem
(
new
QTreeWidgetItem
(
headerNames
));
setAllColumnsShowFocus
(
true
);
setFrameStyle
(
QFrame
::
WinPanel
+
QFrame
::
Sunken
);
...
...
Write
Preview
Markdown
is supported
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