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
PAPPSO
xtpcpp
Commits
e88ec6a8
Commit
e88ec6a8
authored
Nov 09, 2020
by
Langella Olivier
Browse files
fix deprecated use QSet<T>::toList()
parent
92b5bb10
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/output/proticdbml.cpp
View file @
e88ec6a8
...
...
@@ -832,7 +832,7 @@ ProticdbMl::writeMatch(std::vector<const ProteinMatch *> &protein_match_sg_list)
sample_name_list
<<
peptide_match
.
getPeptideEvidence
()
->
getMsRunP
()
->
getSampleName
();
}
sample_name_list
=
sample_name_list
.
toSet
().
toList
();
sample_name_list
=
sample_name_list
.
toSet
().
values
();
for
(
QString
sample_name
:
sample_name_list
)
{
_output_stream
->
writeStartElement
(
"matchSample"
);
...
...
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