summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--uisimulator/win32/button.c6
-rw-r--r--uisimulator/x11/button-x11.c6
2 files changed, 10 insertions, 2 deletions
diff --git a/uisimulator/win32/button.c b/uisimulator/win32/button.c
index c11033fb6b..08ef5e15d8 100644
--- a/uisimulator/win32/button.c
+++ b/uisimulator/win32/button.c
@@ -251,7 +251,11 @@ void button_clear_queue(void)
251#if CONFIG_KEYPAD == IRIVER_H100_PAD 251#if CONFIG_KEYPAD == IRIVER_H100_PAD
252bool button_hold(void) { 252bool button_hold(void) {
253 /* temp fix for hold button on irivers */ 253 /* temp fix for hold button on irivers */
254 return 0; 254 return false;
255}
256bool remote_button_hold(void) {
257 /* temp fix for hold button on irivers */
258 return false;
255} 259}
256#endif 260#endif
257 261
diff --git a/uisimulator/x11/button-x11.c b/uisimulator/x11/button-x11.c
index 593d926b3f..b2d8ab6c7a 100644
--- a/uisimulator/x11/button-x11.c
+++ b/uisimulator/x11/button-x11.c
@@ -291,6 +291,10 @@ void button_clear_queue(void)
291#if CONFIG_KEYPAD == IRIVER_H100_PAD 291#if CONFIG_KEYPAD == IRIVER_H100_PAD
292bool button_hold(void) { 292bool button_hold(void) {
293 /* temp fix for hold button on irivers */ 293 /* temp fix for hold button on irivers */
294 return 0; 294 return false;
295}
296bool remote_button_hold(void) {
297 /* temp fix for hold button on irivers */
298 return false;
295} 299}
296#endif 300#endif