diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 7eeea23c10..d1b8e053bf 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,14 @@ past entries belonging to author(s): Viktor Szakats. */ +2010-01-10 07:34 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com) + * contrib/hbide/idedocks.prg + * contrib/hbide/ideobject.prg + * contrib/hbxbp/xbprtf.prg + ! Fixed: double-click on Output Console error information + line now correctly places the editor positions. + The error will not occur in future. + 2010-01-10 10:50 UTC-0300 Vailton Renato (vailtom gmail.com) * contrib/hbide/idesources.prg ! Fixed to call ::oIde:updateTitleBar() after close any file. After closing diff --git a/harbour/contrib/hbide/idedocks.prg b/harbour/contrib/hbide/idedocks.prg index 9630760d24..a8ea39a4ea 100644 --- a/harbour/contrib/hbide/idedocks.prg +++ b/harbour/contrib/hbide/idedocks.prg @@ -387,7 +387,7 @@ METHOD IdeDocks:outputDoubleClicked( lSelected ) cText := QTextBlock():configure( qCursor:block() ):text() IF hbide_parseFNfromStatusMsg( cText, @cSource, @nLine, .T. ) - ::oEM:editSource( cSource, 0, 0, 0, NIL, .f. ) + ::oSM:editSource( cSource, 0, 0, 0, NIL, .f. ) qCursor := QTextCursor():configure( ::oIde:qCurEdit:textCursor() ) nLine := iif( nLine < 1, 0, nLine - 1 ) diff --git a/harbour/contrib/hbide/ideobject.prg b/harbour/contrib/hbide/ideobject.prg index fd60a3c068..f40daf349f 100644 --- a/harbour/contrib/hbide/ideobject.prg +++ b/harbour/contrib/hbide/ideobject.prg @@ -84,7 +84,7 @@ CLASS IdeObject ACCESS oPM INLINE ::oIde:oPM ACCESS oDK INLINE ::oIde:oDK ACCESS oAC INLINE ::oIde:oAC - ACCESS oSM INLINE ::oIde:oSC + ACCESS oSM INLINE ::oIde:oSM ACCESS aMeta INLINE ::oIde:aMeta diff --git a/harbour/contrib/hbxbp/xbprtf.prg b/harbour/contrib/hbxbp/xbprtf.prg index 0d66aab068..e13097edeb 100644 --- a/harbour/contrib/hbxbp/xbprtf.prg +++ b/harbour/contrib/hbxbp/xbprtf.prg @@ -169,7 +169,7 @@ METHOD XbpRtf:create( oParent, oOwner, aPos, aSize, aPresParams, lVisible ) ::oWidget := QTextEdit():new( ::pParent ) - ::connect( ::pWidget, "copyAvailable(bool)" , {|o,p| ::exeBlock( 1, p, o ) } ) + //::connect( ::pWidget, "copyAvailable(bool)" , {|o,p| ::exeBlock( 1, p, o ) } ) ::connect( ::pWidget, "currentCharFormatChanged(QTextCharFormat)", {|o,p| ::exeBlock( 2, p, o ) } ) ::connect( ::pWidget, "cursorPositionChanged()" , {|o,p| ::exeBlock( 3, p, o ) } ) ::connect( ::pWidget, "redoAvailable(bool)" , {|o,p| ::exeBlock( 4, p, o ) } )