MCPcopy Create free account
hub / github.com/PolyMC/PolyMC / intListToString

Function intListToString

launcher/ui/MainWindow.cpp:1565–1573  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1563 return out;
1564}
1565QString intListToString(const QList<int> &list)
1566{
1567 QStringList slist;
1568 for (int i = 0; i < list.size(); ++i)
1569 {
1570 slist.append(QString::number(list.at(i)));
1571 }
1572 return slist.join(',');
1573}
1574
1575void MainWindow::downloadUpdates(GoUpdate::Status status)
1576{

Callers

nothing calls this directly

Calls 3

appendMethod · 0.80
sizeMethod · 0.45
atMethod · 0.45

Tested by

no test coverage detected