From 56e978010afe06d1a663fdbdaad3bcca8167a95f Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sun, 17 Aug 2008 15:48:25 +0000 Subject: [PATCH] 2008-08-17 17:30 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * include/hbstack.h * include/hbsetup.h * include/hbapi.h * source/rtl/filesys.c * contrib/gtwvg/tests/demowvg.prg * contrib/hbct/tests/ctwtest.prg * contrib/hbgd/ChangeLog * contrib/hbodbc/sql.ch * contrib/rddads/ads.ch * contrib/rddads/ads1.c ! Some more filename casing related cleanups. --- harbour/ChangeLog | 13 +++++++++++++ harbour/contrib/gtwvg/tests/demowvg.prg | 12 ++++++------ harbour/contrib/hbct/tests/ctwtest.prg | 2 +- harbour/contrib/hbgd/ChangeLog | 14 +++++++------- harbour/contrib/hbodbc/sql.ch | 2 +- harbour/contrib/rddads/ads.ch | 2 +- harbour/contrib/rddads/ads1.c | 2 +- harbour/include/hbapi.h | 2 +- harbour/include/hbsetup.h | 2 +- harbour/include/hbstack.h | 2 +- harbour/source/rtl/filesys.c | 2 +- 11 files changed, 34 insertions(+), 21 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index abe07e0ec3..575bc8240d 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,19 @@ 2008-12-31 13:59 UTC+0100 Foo Bar */ +2008-08-17 17:30 UTC+0200 Viktor Szakats (harbour.01 syenar hu) + * include/hbstack.h + * include/hbsetup.h + * include/hbapi.h + * source/rtl/filesys.c + * contrib/gtwvg/tests/demowvg.prg + * contrib/hbct/tests/ctwtest.prg + * contrib/hbgd/ChangeLog + * contrib/hbodbc/sql.ch + * contrib/rddads/ads.ch + * contrib/rddads/ads1.c + ! Some more filename casing related cleanups. + 2008-08-17 17:00 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * contrib/examples/guestbk/guestbk.ini * contrib/examples/guestbk/testcgi.prg diff --git a/harbour/contrib/gtwvg/tests/demowvg.prg b/harbour/contrib/gtwvg/tests/demowvg.prg index f356e83aa7..df14f4e9ff 100644 --- a/harbour/contrib/gtwvg/tests/demowvg.prg +++ b/harbour/contrib/gtwvg/tests/demowvg.prg @@ -682,7 +682,7 @@ FUNCTION WvtMyBrowse() nStyle++ - aAdd( aBlocks, {|| Wvt_SetIcon( 'DIA_EXCL.ico' ) } ) + aAdd( aBlocks, {|| Wvt_SetIcon( 'dia_excl.ico' ) } ) aAdd( aBlocks, {|| Wvt_SetTitle( 'WVT Gui TBrowse()' ) } ) aAdd( aBlocks, {|| Wvt_DrawBoxRaised( nTop, nLeft, nBottom, nRight ) } ) aAdd( aBlocks, {|| Wvt_DrawBoxRecessed( nTop+3, nLeft+2, nBottom-1, nRight-2 ) } ) @@ -1834,7 +1834,7 @@ Function DynDialog_2() lOnTop := .f. cDlgProc := 'DynDlgProc_2' bDlgProc := {|a,b,c,d| DYNDLGPROC_2(a,b,c,d) } - cDlgIcon := 'V_Notes.Ico' + cDlgIcon := 'v_notes.ico' nTimerTicks := 1000 // 1 second if nInfo % 2 == 1 @@ -1939,7 +1939,7 @@ Function DynDlgProc_2( hDlg, nMsg, wParam, lParam ) endif if shIcon == nil - shIcon := Win_LoadIcon( 'Vr_1.ico' ) + shIcon := Win_LoadIcon( 'vr_1.ico' ) endif if shIcon != nil .or. shIcon != 0 Win_SendMessage( Win_GetDlgItem( hDlg, ID_ICO_VOUCH ), STM_SETIMAGE, IMAGE_ICON, shIcon ) @@ -1947,7 +1947,7 @@ Function DynDlgProc_2( hDlg, nMsg, wParam, lParam ) /* if shImage == nil - shImage := Win_LoadImage( 'Vouch1.bmp', 2 ) + shImage := Win_LoadImage( 'vouch1.bmp', 2 ) endif if shImage != nil .and. shImage != 0 Win_SendMessage( Win_GetDlgItem( hDlg, ID_STA_IMAGE ), STM_SETIMAGE, IMAGE_BITMAP, shImage ) @@ -2047,13 +2047,13 @@ EXIT PROCEDURE CleanHandles() FUNCTION DlgSlideShow() LOCAL hDlg, aDlg, nStyle - aSlides := { 'Vouch1.bmp', 'V_Notes.ico', '2000.gif', 'V_Lock.bmp', 'V_Help.ico' } + aSlides := { 'vouch1.bmp', 'v_notes.ico', '2000.gif', 'v_lock.bmp', 'v_help.ico' } nStyle := DS_SETFONT + WS_VISIBLE + WS_POPUP + WS_CAPTION + WS_SYSMENU + WS_THICKFRAME + WS_MINIMIZEBOX aDlg := Wvt_MakeDlgTemplate( 0, 0, 20, 40, {}, 'Slide Show', nStyle ) - hDlg := Wvt_CreateDialog( aDlg, .f., 'DlgSlideShowProc', 'Vr_1.ico', 5000 ) + hDlg := Wvt_CreateDialog( aDlg, .f., 'DlgSlideShowProc', 'vr_1.ico', 5000 ) Return hDlg diff --git a/harbour/contrib/hbct/tests/ctwtest.prg b/harbour/contrib/hbct/tests/ctwtest.prg index d7aab2a9d0..936d1cccef 100644 --- a/harbour/contrib/hbct/tests/ctwtest.prg +++ b/harbour/contrib/hbct/tests/ctwtest.prg @@ -4,7 +4,7 @@ /* * Harbour Project source code - * http://www.Harbour-Project.org/ + * http://www.harbour-project.org/ * * Clipper Tool III like window system test program * Donated to the public domain on 2006-02-11 by Przemyslaw Czerpak diff --git a/harbour/contrib/hbgd/ChangeLog b/harbour/contrib/hbgd/ChangeLog index dbdd2c8b8d..1a7d58bb0d 100644 --- a/harbour/contrib/hbgd/ChangeLog +++ b/harbour/contrib/hbgd/ChangeLog @@ -34,7 +34,7 @@ + added sample to use barcode of the type 2 of 5 2006-03-21 00:38 UTC+0100 Francesco Saverio Giudice - * contrib/gd/Rules.make + * contrib/gd/rules.make * contrib/gd/make_vc.bat * fixed make files @@ -130,13 +130,13 @@ * samples\barcode\bldtest.bat * samples\barcode\bldtestvc.bat + Added barcode sample - * README.txt - * MAKEFILE.BC + * readme.txt + * makefile.bc ! Updated with BarCode stuff 2005-11-07 01:37 UTC+0100 Francesco Saverio Giudice - * contrib/gd/README.txt + * contrib/gd/readme.txt * updated 2005-11-07 00:15 UTC+0100 Francesco Saverio Giudice @@ -159,7 +159,7 @@ 2005-10-31 01:37 UTC+0100 Francesco Saverio Giudice - + contrib/gd/Rules.make + + contrib/gd/rules.make * reverted. file needed 2005-10-31 01:20 UTC+0100 Francesco Saverio Giudice @@ -179,7 +179,7 @@ if your distribution is different please update header files this is needed because some functions are missing in 2.0.28 - - contrib/gd/Rules.make + - contrib/gd/rules.make - contrib/gd/test/Makefile - contrib/gd/test/Makefile.linux - contrib/gd/test/Makefile.mingw32 @@ -307,7 +307,7 @@ + /doc/zlib-license.txt + /env/makeb32.env + /env/makelib.b32 - + /env/bccWin32.Mak + + /env/bccwin32.mak + /include/gd.h + /include/gdcache.h + /include/gdfontg.h diff --git a/harbour/contrib/hbodbc/sql.ch b/harbour/contrib/hbodbc/sql.ch index 8f4a2ed05f..7e3012ba73 100644 --- a/harbour/contrib/hbodbc/sql.ch +++ b/harbour/contrib/hbodbc/sql.ch @@ -4,7 +4,7 @@ /* * -* SQL.CH +* sql.ch * (Not Ready) Headers for ODBC * **/ diff --git a/harbour/contrib/rddads/ads.ch b/harbour/contrib/rddads/ads.ch index 4b2e6fdf26..fc9c1cc83b 100644 --- a/harbour/contrib/rddads/ads.ch +++ b/harbour/contrib/rddads/ads.ch @@ -63,7 +63,7 @@ Internet Server capabilities, etc. So to link to v5, do this: - 1) Link with an ACE32.LIB created from the version 5 + 1) Link with an ace32.lib created from the version 5 dll that imports these functions, and 2) Set this "define" when compiling rddads: diff --git a/harbour/contrib/rddads/ads1.c b/harbour/contrib/rddads/ads1.c index 09bf8dc43d..b83289b4fc 100644 --- a/harbour/contrib/rddads/ads1.c +++ b/harbour/contrib/rddads/ads1.c @@ -787,7 +787,7 @@ static ERRCODE adsGoTo( ADSAREAP pArea, ULONG ulRecNo ) HB_TRACE(HB_TR_DEBUG, ("adsGoTo(%p, %lu)", pArea, ulRecNo)); /* -----------------7/19/2001 3:04PM----------------- - The following call is a necessary workaround for ACE32.DLL + The following call is a necessary workaround for ace32.dll prior to 6.1. There were bugs where AdsGotoRecord() can FAIL to move the record pointer after some sequences of setting/clearing relations. diff --git a/harbour/include/hbapi.h b/harbour/include/hbapi.h index 811fe0ccee..63bf56584e 100644 --- a/harbour/include/hbapi.h +++ b/harbour/include/hbapi.h @@ -53,7 +53,7 @@ /* TOFIX: There are several things in this file which are not part of the standard Harbour API, in other words these things are not guaranteed to remain unchanged. To avoid confusion these should be - moved to somewhere else (like HBRTL.H). [vszakats] */ + moved to somewhere else (like hbrtl.h). [vszakats] */ #ifndef HB_APIEXT_H_ #define HB_APIEXT_H_ diff --git a/harbour/include/hbsetup.h b/harbour/include/hbsetup.h index 7e007763cd..9d083035c7 100644 --- a/harbour/include/hbsetup.h +++ b/harbour/include/hbsetup.h @@ -56,7 +56,7 @@ #include /* *********************************************************************** - * Include settings common for .PRG and .C files + * Include settings common for .prg and .c files */ #include "hbsetup.ch" diff --git a/harbour/include/hbstack.h b/harbour/include/hbstack.h index 58c3a6be80..618c58a10d 100644 --- a/harbour/include/hbstack.h +++ b/harbour/include/hbstack.h @@ -53,7 +53,7 @@ /* TOFIX: There are several things in this file which are not part of the standard Harbour API, in other words these things are not guaranteed to remain unchanged. To avoid confusion these should be - moved to somewhere else (like HBRTL.H). [vszakats] */ + moved to somewhere else (like hbrtl.h). [vszakats] */ #ifndef HB_STACK_H_ #define HB_STACK_H_ diff --git a/harbour/source/rtl/filesys.c b/harbour/source/rtl/filesys.c index 83eca92f4f..7c29548369 100644 --- a/harbour/source/rtl/filesys.c +++ b/harbour/source/rtl/filesys.c @@ -519,7 +519,7 @@ static int convert_seek_flags( USHORT uiFlags ) /* - * FILESYS.API FUNCTIONS -- + * filesys.api functions: */ HB_EXPORT FHANDLE hb_fsGetOsHandle( FHANDLE hFileHandle )