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.
This commit is contained in:
Pritpal Bedi
2011-05-25 19:27:11 +00:00
parent 60988b7e66
commit c88ca0b73f
2 changed files with 12 additions and 0 deletions

View File

@@ -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)

View File

@@ -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