diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 4550a9cbc0..d2c59212ce 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -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) diff --git a/harbour/src/rtl/gtwin/gtwin.c b/harbour/src/rtl/gtwin/gtwin.c index 57955dca61..4e6ebaa9d4 100644 --- a/harbour/src/rtl/gtwin/gtwin.c +++ b/harbour/src/rtl/gtwin/gtwin.c @@ -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;