Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apis/RDKWindowManager/IRDKWindowManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ struct EXTERNAL IRDKWindowManager : virtual public Core::IUnknown {
/** Removes a key intercept */
// @text removeKeyIntercept
// @brief Removes a key intercept for a specific key code and client.
// @param intercept: JSON String format with the client/callSign, keyCode, modifiers
virtual Core::hresult RemoveKeyIntercept(const string &intercept) = 0;
// @param clientId: The client identifier, keyCode: The key code to remove, modifiers: JSON String format with one or more modifiers
virtual Core::hresult RemoveKeyIntercept(const string& clientId, const uint32_t keyCode, const string& modifiers) = 0;

/** Registers listeners for specific keys. */
// @text addKeyListener
Expand Down
Loading