aboutsummaryrefslogtreecommitdiff
path: root/guilib/common
diff options
context:
space:
mode:
Diffstat (limited to 'guilib/common')
-rw-r--r--guilib/common/IRServerSuite/IRServerSuite.cpp4
-rw-r--r--guilib/common/IRServerSuite/IRServerSuite.h3
2 files changed, 7 insertions, 0 deletions
diff --git a/guilib/common/IRServerSuite/IRServerSuite.cpp b/guilib/common/IRServerSuite/IRServerSuite.cpp
index 0e70b368d4..1e2ba89223 100644
--- a/guilib/common/IRServerSuite/IRServerSuite.cpp
+++ b/guilib/common/IRServerSuite/IRServerSuite.cpp
@@ -447,3 +447,7 @@ bool CRemoteControl::IsHolding()
{
return m_isHolding;
}
+
+void CRemoteControl::setUsed(bool value)
+{
+} \ No newline at end of file
diff --git a/guilib/common/IRServerSuite/IRServerSuite.h b/guilib/common/IRServerSuite/IRServerSuite.h
index d2cb322640..e80761268f 100644
--- a/guilib/common/IRServerSuite/IRServerSuite.h
+++ b/guilib/common/IRServerSuite/IRServerSuite.h
@@ -37,7 +37,10 @@ public:
WORD GetButton();
bool IsHolding();
bool IsInitialized() {return m_bInitialized;}
+
+ //lirc stuff, not implemented
bool IsInUse() {return false;}
+ void setUsed(bool value);
protected:
virtual void Process();