Remove unused functions in OpenRGBClientInfoPage and OpenRGBDialog

This commit is contained in:
Adam Honse 2025-07-12 21:26:08 -05:00
parent 2335259dd6
commit c7d824fbf3
5 changed files with 0 additions and 32 deletions

View file

@ -67,22 +67,6 @@ void OpenRGBClientInfoPage::changeEvent(QEvent *event)
}
}
void OpenRGBClientInfoPage::AddClient(NetworkClient* new_client)
{
/*-----------------------------------------------------*\
| Add a new client to the list, register the callback, |
| and update the information view if the pointer is |
| valid |
\*-----------------------------------------------------*/
if(new_client != NULL)
{
ResourceManager::get()->GetClients().push_back(new_client);
new_client->RegisterClientInfoChangeCallback(UpdateInfoCallback, this);
UpdateInfo();
}
}
void OpenRGBClientInfoPage::UpdateInfo()
{
/*-----------------------------------------------------*\