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

Function updateConnectionStatus

plugins/twitch/twitch-tab.cpp:156–173  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

154}
155
156static void updateConnectionStatus(QTableWidget *table)
157{
158 for (int row = 0; row < table->rowCount(); row++) {
159 auto item = table->item(row, 0);
160 if (!item) {
161 continue;
162 }
163
164 auto weakToken = GetWeakTwitchTokenByQString(item->text());
165 auto token = weakToken.lock();
166 if (!token) {
167 continue;
168 }
169
170 UpdateItemTableRow(table, row,
171 getCellLabels(token.get(), false));
172 }
173}
174
175static void openSettingsDialog()
176{

Callers 2

openSettingsDialogFunction · 0.70
setupTabFunction · 0.70

Calls 5

UpdateItemTableRowFunction · 0.85
rowCountMethod · 0.80
getCellLabelsFunction · 0.70
getMethod · 0.45

Tested by

no test coverage detected