Skip to content

Commit

Permalink
fix qstring warning
Browse files Browse the repository at this point in the history
  • Loading branch information
timosachsenberg authored Oct 18, 2024
1 parent 3b0530d commit eca1c92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/topp/SageAdapter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1044,7 +1044,7 @@ vector<PeptideIdentification> mapDifftoMods(DeltaMassHistogram hist, DeltaMassto
<< "--write-pin";
}

if (batch >= 1) arguments << "--batch-size" << QString(batch);
if (batch >= 1) arguments << "--batch-size" << String(batch).toQString();

for (auto s : input_files) arguments << s.toQString();

Expand Down

0 comments on commit eca1c92

Please sign in to comment.