summaryrefslogtreecommitdiff
path: root/libopie2
authoraquadran <aquadran>2006-12-13 20:36:14 (UTC)
committer aquadran <aquadran>2006-12-13 20:36:14 (UTC)
commitbb6f32ae999168fc44d50d3523c3ef232824185a (patch) (side-by-side diff)
tree1d89bf239f98c4e3ce6fc83131b6b2c4ec5aac2c /libopie2
parent5a0012fb3b75ff41437b0685386731d1367e4e7b (diff)
downloadopie-bb6f32ae999168fc44d50d3523c3ef232824185a.zip
opie-bb6f32ae999168fc44d50d3523c3ef232824185a.tar.gz
opie-bb6f32ae999168fc44d50d3523c3ef232824185a.tar.bz2
changed suspend button mapping for mypal too same as for ipaqs
Diffstat (limited to 'libopie2') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiecore/device/odevice_mypal.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/libopie2/opiecore/device/odevice_mypal.cpp b/libopie2/opiecore/device/odevice_mypal.cpp
index 208be46..73b31cb 100644
--- a/libopie2/opiecore/device/odevice_mypal.cpp
+++ b/libopie2/opiecore/device/odevice_mypal.cpp
@@ -144,27 +144,27 @@ bool MyPal::filter ( int /*unicode*/, int keycode, int modifiers, bool isPress,
case Key_Right:
case Key_Up :
case Key_Down : {
// Rotate the cursor keys by 270
// keycode - Key_Left = position of the button starting from left clockwise
// add the rotation to it and modolo. No we've the original offset
// add the offset to the Key_Left key
if ( d->m_model == Model_MyPal_716 )
newkeycode = Key_Left + ( keycode - Key_Left + 3 ) % 4;
break;
}
- // map Power Button short/long press to F6
- case Key_F6: {
- if ( isPress ) {
+ // map Power Button short/long press
+ case HardKey_Suspend: { // Hope we don't have infinite recursion here:
+ if ( isPress ) {
if ( m_power_timer )
killTimer ( m_power_timer );
m_power_timer = startTimer ( 500 );
}
else if ( m_power_timer ) {
killTimer ( m_power_timer );
m_power_timer = 0;
QWSServer::sendKeyEvent ( -1, HardKey_Suspend, 0, true, false );
QWSServer::sendKeyEvent ( -1, HardKey_Suspend, 0, false, false );
}
newkeycode = Key_unknown;
break;