MCPcopy Create free account
hub / github.com/WarmUpTill/SceneSwitcher / UpdateItemTableRow

Function UpdateItemTableRow

lib/utils/resource-table.cpp:124–134  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

122}
123
124void UpdateItemTableRow(QTableWidget *table, int row,
125 const QStringList &cellLabels)
126{
127 int col = 1; // Skip the name cell
128 for (const auto &cellLabel : cellLabels) {
129 auto item = table->item(row, col);
130 item->setText(cellLabel);
131 item->setToolTip(cellLabel);
132 col++;
133 }
134}
135
136void RenameItemTableRow(QTableWidget *table, const QString &oldName,
137 const QString &newName)

Callers 6

updateVariableStatusFunction · 0.85
updateQueueStatusFunction · 0.85
updateConnectionStatusFunction · 0.85
updateServerStatusFunction · 0.85
updateConnectionStatusFunction · 0.85
updateConnectionStatusFunction · 0.85

Calls 2

setTextMethod · 0.80
setToolTipMethod · 0.45

Tested by

no test coverage detected