2011-10-24 13:34 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* src/rtl/gtwin/gtwin.c
    ! Missing break clause causing following code also changes 
      console window title.
         hb_gtInfo( HB_GTI_BOXCP, hb_cdpSelect() )
      Patch by Aleksander Czajczynski
This commit is contained in:
Viktor Szakats
2011-10-24 11:36:12 +00:00
parent 596605424c
commit 3262a1a8a4
2 changed files with 10 additions and 1 deletions

View File

@@ -16,6 +16,13 @@
The license applies to all entries newer than 2009-04-28.
*/
2011-10-24 13:34 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* src/rtl/gtwin/gtwin.c
! Missing break clause causing following code also changes
console window title.
hb_gtInfo( HB_GTI_BOXCP, hb_cdpSelect() )
Patch by Aleksander Czajczynski
2011-10-24 01:40 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbmysql/tmysql.prg
! tinyInt type in MySQL is now always regarded as numeric value (was bool)

View File

@@ -1915,7 +1915,9 @@ static HB_BOOL hb_gt_win_Info( PHB_GT pGT, int iType, PHB_GT_INFO pInfo )
s_cdpBox = cdpBox;
}
#endif
case HB_GTI_WINTITLE:
break;
case HB_GTI_WINTITLE:
{
TCHAR buff[ 256 ];
DWORD dwLen;