MCPcopy Create free account
hub / github.com/dmitry-s93/MControlCenter / intToQString

Method intToQString

src/mainwindow.cpp:294–298  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

292}
293
294QString MainWindow::intToQString(int value) const {
295 if (value < 0)
296 return "-";
297 return QString::number(value);
298}
299
300void MainWindow::updateBatteryCharge() {
301 ui->BatteryChargeValueLabel->setText(intToQString(operate.getBatteryCharge()) + " %");

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected