Skip to content

Commit

Permalink
> Fixed typeconversion
Browse files Browse the repository at this point in the history
  • Loading branch information
trueromanus committed Oct 23, 2023
1 parent 8f92cb2 commit 59b79d5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ViewModels/httprequestviewmodel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,8 @@ QString HttpRequestViewModel::getAllFields() const noexcept
}
);

QStringList lines(m_items->size());
qsizetype count = m_items->size();
QStringList lines(count);
int iterator = 0;

foreach(auto item, sortedList) {
Expand Down

0 comments on commit 59b79d5

Please sign in to comment.