summaryrefslogtreecommitdiff
path: root/noncore/comm
authortreke <treke>2002-09-05 19:01:26 (UTC)
committer treke <treke>2002-09-05 19:01:26 (UTC)
commitb95c5502fb1b7425fe0cc503a17d8dd3658b032b (patch) (side-by-side diff)
tree4a6cdd9a3e7cf04a743465981537e987b100cd81 /noncore/comm
parent3b604a204719a4b45360a9d8685d4bb51a32b9dd (diff)
downloadopie-b95c5502fb1b7425fe0cc503a17d8dd3658b032b.zip
opie-b95c5502fb1b7425fe0cc503a17d8dd3658b032b.tar.gz
opie-b95c5502fb1b7425fe0cc503a17d8dd3658b032b.tar.bz2
Fixed the Send Control Alt Delete option
Diffstat (limited to 'noncore/comm') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/comm/keypebble/krfbcanvas.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/noncore/comm/keypebble/krfbcanvas.cpp b/noncore/comm/keypebble/krfbcanvas.cpp
index 896de7f..918ce8b 100644
--- a/noncore/comm/keypebble/krfbcanvas.cpp
+++ b/noncore/comm/keypebble/krfbcanvas.cpp
@@ -169,7 +169,11 @@ void KRFBCanvas::sendCtlAltDel( void)
qDebug("Here");
if ( loggedIn_ ) {
- connection_->buffer()->keyPressEvent( &QKeyEvent(QEvent::KeyPress,Qt::Key_Delete, 0x7f,ControlButton|AltButton));
- // connection_->buffer()->keyPressEvent( &QKeyEvent(QEvent::KeyRelease,Qt::Key_Delete, 0x7f,ControlButton|AltButton));
+ connection_->buffer()->keyPressEvent( &QKeyEvent(QEvent::KeyPress,Qt::Key_Control, 0,0));
+ connection_->buffer()->keyPressEvent( &QKeyEvent(QEvent::KeyPress,Qt::Key_Alt, 0,0));
+ connection_->buffer()->keyPressEvent( &QKeyEvent(QEvent::KeyPress,Qt::Key_Delete, 0,0));
+ connection_->buffer()->keyPressEvent( &QKeyEvent(QEvent::KeyRelease,Qt::Key_Control, 0,0));
+ connection_->buffer()->keyPressEvent( &QKeyEvent(QEvent::KeyRelease,Qt::Key_Alt, 0,0));
+ connection_->buffer()->keyPressEvent( &QKeyEvent(QEvent::KeyRelease,Qt::Key_Delete, 0,0));
}
}