Skip to content

Commit

Permalink
Fix build with older compilers
Browse files Browse the repository at this point in the history
  • Loading branch information
kraxarn committed Jan 1, 2024
1 parent 83bfc5d commit 9579a62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/tooltip.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ auto Tooltip::tooltip(const QPixmap &image, const QList<TooltipRow> &rows) -> QS
{
QString table("<table>");

for (qsizetype i = 0; i < rows.size(); i++)
for (long long i = 0; i < rows.size(); i++)
{
table.append("<tr>");
const auto &row = rows.at(i);
Expand Down

0 comments on commit 9579a62

Please sign in to comment.