2021-05-07 Fred Gleason <fredg@paravelsystems.com>

* Fixed typos in 'CODINGSTYLE'.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason 2021-05-07 16:25:05 -04:00
parent 83f2bffa95
commit 73c31d5539
2 changed files with 17 additions and 15 deletions

View File

@ -219,20 +219,20 @@ Bad:
Good:
sql=QString("select ")+
"`CART`.`TITLE,"+ // 00
"`CART`.`ARTIST,"+ // 01
"`CART`.`PUBLISHER,"+ // 02
"`CART`.`COMPOSER,"+ // 03
"`CART`.`USAGE_CODE,"+ // 04
"`CUTS`.`ISRC,"+ // 05
"`CART`.`ALBUM,"+ // 06
"`CART`.`LABEL,"+ // 07
"`CUTS`.`ISCI,"+ // 08
"`CART`.`CONDUCTOR,"+ // 09
"`CART`.`USER_DEFINED,"+ // 10
"`CART`.`SONG_ID,"+ // 11
"`CUTS`.`DESCRIPTION,"+ // 12
"`CUTS`.`OUTCUE "+ // 13
"`CART`.`TITLE`,"+ // 00
"`CART`.`ARTIST`,"+ // 01
"`CART`.`PUBLISHER`,"+ // 02
"`CART`.`COMPOSER`,"+ // 03
"`CART`.`USAGE_CODE`,"+ // 04
"`CUTS`.`ISRC`,"+ // 05
"`CART`.`ALBUM`,"+ // 06
"`CART`.`LABEL`,"+ // 07
"`CUTS`.`ISCI`,"+ // 08
"`CART`.`CONDUCTOR`,"+ // 09
"`CART`.`USER_DEFINED`,"+ // 10
"`CART`.`SONG_ID`,"+ // 11
"`CUTS`.`DESCRIPTION`,"+ // 12
"`CUTS`.`OUTCUE` "+ // 13
"from `CART` left join `CUTS` "+
"on `CART`.`NUMBER`=`CUTS`.`CART_NUMBER` where "+
"`CUTS`.`CUT_NAME`='"+RDEscapeString(button->cutName())+"'";
@ -249,7 +249,7 @@ Changes that alter the schema of the database must include:
B) Code that implements the schema change, in the
'utils/rddbmgr/updateschema.cpp' file.
C) Code the implements an exact, perfect reversal of the schema change,
C) Code that implements an exact, perfect reversal of the schema change,
in the 'utils/rddbmgr/revertschema.cpp' file.
D) Updating of the schema map in the 'MainObject::InitializeSchemaMap()'

View File

@ -21642,3 +21642,5 @@
rdairplay(1) to salted SHA1.
2021-04-27 Fred Gleason <fredg@paravelsystems.com>
* Updated the 'Required build packages' list for Ubuntu in 'INSTALL'.
2021-05-07 Fred Gleason <fredg@paravelsystems.com>
* Fixed typos in 'CODINGSTYLE'.