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
Plasma
DrKonqi
Commits
e4192088
Commit
e4192088
authored
May 04, 2021
by
Harald Sitter
🏳️🌈
Browse files
style++
>0 aka not-empty
parent
f4cd9d5b
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/bugzillaintegration/productmapping.cpp
View file @
e4192088
...
...
@@ -101,8 +101,8 @@ void ProductMapping::getRelatedProductsUsingInternalFile(const QString &bugzilla
if
(
bzGroups
.
hasKey
(
group
))
{
QString
bzGroup
=
bzGroups
.
readEntry
(
group
);
if
(
!
bzGroup
.
isEmpty
())
{
QStringList
relatedGroups
=
bzGroup
.
split
(
QLatin1Char
(
'|'
),
Qt
::
SkipEmptyParts
);
if
(
relatedGroups
.
size
()
>
0
)
{
const
QStringList
relatedGroups
=
bzGroup
.
split
(
QLatin1Char
(
'|'
),
Qt
::
SkipEmptyParts
);
if
(
!
relatedGroups
.
isEmpty
()
)
{
m_relatedBugzillaProducts
.
append
(
relatedGroups
);
}
}
else
{
...
...
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