refactor: Server::handleToggleScreenEvent remove name of the incomming event var to indicate its not used in the method

This commit is contained in:
sithlord48
2025-09-04 21:52:48 -04:00
committed by Nick Bolton
parent aedbffa809
commit 2e722bdfeb
2 changed files with 2 additions and 2 deletions

View File

@ -1334,7 +1334,7 @@ void Server::handleSwitchInDirectionEvent(const Event &event)
}
}
void Server::handleToggleScreenEvent(const Event &event)
void Server::handleToggleScreenEvent(const Event &)
{
// Get the list of connected screens in config order
std::vector<std::string> screens;

View File

@ -306,7 +306,7 @@ private:
void handleClientCloseTimeout(BaseClientProxy *client);
void handleSwitchToScreenEvent(const Event &event);
void handleSwitchInDirectionEvent(const Event &event);
void handleToggleScreenEvent(const Event &event);
void handleToggleScreenEvent(const Event &);
void handleKeyboardBroadcastEvent(const Event &event);
void handleLockCursorToScreenEvent(const Event &event);