Skip to content

Commit

Permalink
Fix a couple of unused parameter warnings on android.
Browse files Browse the repository at this point in the history
  • Loading branch information
linuxdude42 committed Apr 27, 2020
1 parent 2e45237 commit cb32e24
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions mythtv/libs/libmythui/devices/mythinputdevicehandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ void MythInputDeviceHandler::Start(void)

void MythInputDeviceHandler::Stop(bool Finishing /* = true */)
{
Q_UNUSED(Finishing); // depending on #ifdefs
LOG(VB_GENERAL, LOG_INFO, LOC + "Stopping");

#ifdef USING_LIBCEC
Expand Down Expand Up @@ -208,6 +209,8 @@ void MythInputDeviceHandler::MainWindowReady(void)

void MythInputDeviceHandler::customEvent(QEvent* Event)
{
Q_UNUSED(Event); // depending on #ifdefs

if (m_ignoreKeys)
return;

Expand Down

0 comments on commit cb32e24

Please sign in to comment.