diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 68842b9689..73887e2879 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,11 @@ The license applies to all entries newer than 2009-04-28. */ +2011-05-25 12:25 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com) + * contrib/hbide/ideedit.prg + ! Fixed: CTRL+Insert was not copying text to the clipboard. + Reported on SourceForge bug tracker. + 2011-05-25 19:43 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * contrib/xhb/xhbtedit.prg ! fixed formatting (using hbformat + manual corrections) diff --git a/harbour/contrib/hbide/ideedit.prg b/harbour/contrib/hbide/ideedit.prg index 55fc8b316d..d4ea86ffb3 100644 --- a/harbour/contrib/hbide/ideedit.prg +++ b/harbour/contrib/hbide/ideedit.prg @@ -626,6 +626,13 @@ METHOD IdeEdit:execKeyEvent( nMode, nEvent, p, p1 ) ENDIF SWITCH ( key ) + + CASE Qt_Key_Insert + IF lCtrl + ::copy() + ENDIF + EXIT + CASE Qt_Key_Backspace IF ! lCtrl .AND. ! lAlt IF ::getLineNo() == ::nProtoLine .AND. ::getColumnNo() <= ::nProtoCol + 1