2012-11-28 00:57 UTC+0100 Viktor Szakats (harbour syenar.net)

* extras/gtwvw/gtwvwd.c
  * extras/gtwvw/hbgtwvw.h
    * do not use <tchar.h>
This commit is contained in:
Viktor Szakats
2012-11-27 23:58:04 +00:00
parent bc72259b2d
commit 2e5c4dc52f
3 changed files with 7 additions and 3 deletions

View File

@@ -10,6 +10,11 @@
* Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment
*/
2012-11-28 00:57 UTC+0100 Viktor Szakats (harbour syenar.net)
* extras/gtwvw/gtwvwd.c
* extras/gtwvw/hbgtwvw.h
* do not use <tchar.h>
2012-11-27 21:23 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* harbour/src/vm/cmdarg.c
* eliminated unnecessary initialization

View File

@@ -3648,7 +3648,7 @@ static LRESULT CALLBACK hb_gt_wvwWndProc( HWND hWnd, UINT message, WPARAM wParam
//long lSBColorForeground, lSBColorBackground;
size_t stLen;
const _TCHAR * pEnd;
const TCHAR * pEnd;
pWindowData->bSBPaint = FALSE;
@@ -3666,7 +3666,7 @@ static LRESULT CALLBACK hb_gt_wvwWndProc( HWND hWnd, UINT message, WPARAM wParam
//lSBColorBackground = strtol( s_cSBColorBackground, NULL, 10 );
SetBkColor( lpDIS->hDC, pWindowData->cSBColorBackground ); //lSBColorBackground );
for( pEnd = ptStr; *pEnd != _TEXT( '\0' ); pEnd++ )
for( pEnd = ptStr; *pEnd != TEXT( '\0' ); pEnd++ )
continue;
stLen = pEnd - ptStr;

View File

@@ -102,7 +102,6 @@
#include "hbole.h"
#include <windows.h>
#include <tchar.h>
#include <stdlib.h>
#include <commctrl.h>