diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 0711a4e7bf..974bbc5df0 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,10 @@ The license applies to all entries newer than 2009-04-28. */ +2012-10-12 16:31 UTC+0200 Viktor Szakats (harbour syenar.net) + * contrib/xhb/xhbtedit.prg + * formatting + 2012-10-12 16:27 UTC+0200 Viktor Szakats (harbour syenar.net) * contrib/hbnf/menu1.prg * contrib/hbnf/popadder.prg diff --git a/harbour/contrib/xhb/xhbtedit.prg b/harbour/contrib/xhb/xhbtedit.prg index 6c4b4414f0..a0fc38bc25 100644 --- a/harbour/contrib/xhb/xhbtedit.prg +++ b/harbour/contrib/xhb/xhbtedit.prg @@ -260,18 +260,18 @@ ENDCLASS METHOD New( cString, nTop, nLeft, nBottom, nRight, lEditMode, nLineLength, nTabSize, nTextRow, nTextCol, nWndRow, nWndCol ) CLASS XHBEditor - __defaultNIL( @ cString, "" ) - __defaultNIL( @ nTop, 0 ) - __defaultNIL( @ nLeft, 0 ) - __defaultNIL( @ nBottom, MaxRow() ) - __defaultNIL( @ nRight, MaxCol() ) - __defaultNIL( @ lEditMode, .T. ) - __defaultNIL( @ nLineLength, NIL ) - __defaultNIL( @ nTabSize, NIL ) - __defaultNIL( @ nTextRow, 1 ) - __defaultNIL( @ nTextCol, 0 ) - __defaultNIL( @ nWndRow, 0 ) - __defaultNIL( @ nWndCol, 0 ) + __defaultNIL( @cString, "" ) + __defaultNIL( @nTop, 0 ) + __defaultNIL( @nLeft, 0 ) + __defaultNIL( @nBottom, MaxRow() ) + __defaultNIL( @nRight, MaxCol() ) + __defaultNIL( @lEditMode, .T. ) + __defaultNIL( @nLineLength, NIL ) + __defaultNIL( @nTabSize, NIL ) + __defaultNIL( @nTextRow, 1 ) + __defaultNIL( @nTextCol, 0 ) + __defaultNIL( @nWndRow, 0 ) + __defaultNIL( @nWndCol, 0 ) // 2006/JUL/22 - E.F. To avoid run time error. IF nTop > nBottom .OR. nLeft > nRight