diff --git a/harbour/ChangeLog b/harbour/ChangeLog index be670ada98..726b6ecf30 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,21 @@ 2008-12-31 13:59 UTC+0100 Foo Bar */ +2008-06-21 22:24 UTC+0200 Viktor Szakats (harbour.01 syenar hu) + * source/rtl/gtalleg/gtalleg.c + * source/rtl/gtgui/gtgui.c + * source/rtl/gtwin/gtwin.c + * source/rtl/gtwvt/gtwvt.c + * source/rtl/gtxwc/gtxwc.c + * Changed some GT names to more descriptive, uniform ones + and leaving "win32" (it can be win64 too): + + "Win32 buffered console -> "Windows native console" + "Win32 buffered WVT" -> "Windows GUI console (WVT)" + "Strep GT driver for W32 GUI programs" -> "Windows dummy console for GUI programs" + "XWindow Console XWC" -> "XWindow GUI console (XWC)" + "Multiplatform Allegro graphics console" -> "Portable Allegro GUI console" + 2008-06-21 21:22 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * doc/whatsnew.txt + Some updates. diff --git a/harbour/source/rtl/gtalleg/gtalleg.c b/harbour/source/rtl/gtalleg/gtalleg.c index 420d1bbd14..13cf3638a6 100644 --- a/harbour/source/rtl/gtalleg/gtalleg.c +++ b/harbour/source/rtl/gtalleg/gtalleg.c @@ -590,7 +590,7 @@ static char * hb_gt_alleg_Version( PHB_GT pGT, int iType ) if( iType == 0 ) return HB_GT_DRVNAME( HB_GT_NAME ); - return "Harbour Terminal: Multiplatform Allegro graphics console"; + return "Harbour Terminal: Portable Allegro GUI console"; } static BOOL hb_gt_alleg_SetMode( PHB_GT pGT, int iRows, int iCols ) diff --git a/harbour/source/rtl/gtgui/gtgui.c b/harbour/source/rtl/gtgui/gtgui.c index bcb10e0302..b22883358f 100644 --- a/harbour/source/rtl/gtgui/gtgui.c +++ b/harbour/source/rtl/gtgui/gtgui.c @@ -79,7 +79,7 @@ static char * hb_gt_gui_Version( PHB_GT pGT, int iType ) if ( iType == 0 ) return HB_GT_DRVNAME( HB_GT_NAME ); - return "Harbour Terminal: Strep GT driver for W32 GUI programs"; + return "Harbour Terminal: Windows dummy console for GUI programs"; } /* *********************************************************************** */ diff --git a/harbour/source/rtl/gtwin/gtwin.c b/harbour/source/rtl/gtwin/gtwin.c index 24172e99cf..8dce07618a 100644 --- a/harbour/source/rtl/gtwin/gtwin.c +++ b/harbour/source/rtl/gtwin/gtwin.c @@ -856,7 +856,7 @@ static char * hb_gt_win_Version( PHB_GT pGT, int iType ) if( iType == 0 ) return HB_GT_DRVNAME( HB_GT_NAME ); - return "Harbour Terminal: Win32 buffered console"; + return "Harbour Terminal: Windows native console"; } /* *********************************************************************** */ diff --git a/harbour/source/rtl/gtwvt/gtwvt.c b/harbour/source/rtl/gtwvt/gtwvt.c index fe3a160f8c..696050e3ab 100644 --- a/harbour/source/rtl/gtwvt/gtwvt.c +++ b/harbour/source/rtl/gtwvt/gtwvt.c @@ -1725,7 +1725,7 @@ static char * hb_gt_wvt_Version( PHB_GT pGT, int iType ) if( iType == 0 ) return HB_GT_DRVNAME( HB_GT_NAME ); - return "Harbour Terminal: Win32 buffered WVT"; + return "Harbour Terminal: Windows GUI console (WVT)"; } /* ********************************************************************** */ diff --git a/harbour/source/rtl/gtxwc/gtxwc.c b/harbour/source/rtl/gtxwc/gtxwc.c index 7ea7c500fc..4909b75004 100644 --- a/harbour/source/rtl/gtxwc/gtxwc.c +++ b/harbour/source/rtl/gtxwc/gtxwc.c @@ -3434,7 +3434,7 @@ static char * hb_gt_xwc_Version( PHB_GT pGT, int iType ) if( iType == 0 ) return HB_GT_DRVNAME( HB_GT_NAME ); - return "Harbour Terminal: XWindow Console XWC"; + return "Harbour Terminal: XWindow GUI console (XWC)"; } /* *********************************************************************** */