fix build failure

This commit is contained in:
RickyRister 2025-01-11 18:25:24 -08:00
parent 6e019bd150
commit 4e8980222a
2 changed files with 2 additions and 2 deletions

View file

@ -85,7 +85,7 @@ QString TabMessage::getTabText() const
return tr("%1 - Private chat").arg(QString::fromStdString(otherUserInfo->name()));
}
void TabMessage::closeRequest(bool forced)
void TabMessage::closeRequest(bool /*forced*/)
{
emit talkClosing(this);
deleteLater();

View file

@ -170,7 +170,7 @@ void TabRoom::actShowPopup(const QString &message)
}
}
void TabRoom::closeRequest(bool forced)
void TabRoom::closeRequest(bool /*forced*/)
{
sendRoomCommand(prepareRoomCommand(Command_LeaveRoom()));
emit roomClosing(this);