Skip to content

Commit 20dfca3

Browse files
authored
Merge pull request #325 from cse-sim/rename-filename-comments
Rename filename comments
2 parents 887bb74 + ebf8544 commit 20dfca3

21 files changed

+24
-24
lines changed

src/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,8 +208,8 @@ set(headers
208208
)
209209

210210
if(USE_XMODULE) # Runtime Share Library interface - Not used since Version 0.899. (Windows only)
211-
list(APPEND source XMODULE.CPP)
212-
list(APPEND headers XMODULE.H)
211+
list(APPEND source xmodule.cpp)
212+
list(APPEND headers xmodule.h)
213213
endif()
214214

215215
# Precompiled Headers

src/RCDEF/rcdef.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -972,7 +972,7 @@ LOCAL void wdtypes( FILE *f)
972972
// introductory info
973973

974974
fprintf( f,
975-
"/* DTYPES.H: data types include file automatically generated by rcdef.exe. */\n"
975+
"/* dtypes.h: data types include file automatically generated by rcdef.exe. */\n"
976976
"\n"
977977
" /* this file is #included in cnglob.h. */\n"
978978
"\n"
@@ -1162,7 +1162,7 @@ LOCAL void wDttab() // write C++ source data types table dttab.cpp
11621162

11631163
// write front of file stuff
11641164
fprintf( f,
1165-
"/* DTTAB.CPP: data types table source file automatically generated by rcdef. */\n"
1165+
"/* dttab.cpp: data types table source file automatically generated by rcdef. */\n"
11661166
"\n"
11671167
" /* do not edit this file -- it is written over any time rcdef is run --\n"
11681168
" instead change the input, dtypes.def, and re-run rcdef.exe. */\n"
@@ -1387,7 +1387,7 @@ LOCAL void wUntab() // write untab.cpp
13871387

13881388
// head of file comments
13891389
fprintf( f,
1390-
"/* UNTAB.CPP: units table source file automatically generated by rcdef.exe. */\n"
1390+
"/* untab.cpp: units table source file automatically generated by rcdef.exe. */\n"
13911391
"\n"
13921392
" /* do not edit this file -- it is written over any time rcdef is run --\n"
13931393
" instead change the input, units.def, and re-run rcdef. */" );

src/ancrec.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ typedef basAnc* BP; // basAnc pointer -- formerly used to localize NEARness
5050
// class basAnc: base class for application record anchors.
5151
//***************************************************************************************************************************
5252
#define RTBRAT 0x2000 /* Old (1992) "Record Array Table" record type bit, now always on here, used in validity checks.
53-
ALSO DEFINED IN SRD.H, MUST MATCH. */
53+
also defined in srd.h, MUST MATCH!. */
5454
//--- bits for basAnc.flags
5555
#define RFSTAT 0x4000 // "static" record basAnc: not reallocable, min subscr 0 not 1. set ancrec.cpp, tested ancrec,cul,cuprobe.cpp.
5656
#define RFTYS 0x1000 // is in TYPES sub-basAnc (pted to by a basAnc.tys)

src/cnah1.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1107,7 +1107,7 @@ x TRUE may enable some autoSizing stuff eg in ztuMode. 7-20-95. */
11071107
return RCOK;
11081108
} // AH::ahCompute
11091109
//-----------------------------------------------------------------------------------------------------------------------------
1110-
// AH member functions called by ahEstimate, ahCompute, etc continue in CNAH2.CPP.
1110+
// AH member functions called by ahEstimate, ahCompute, etc continue in cnah2.cpp.
11111111
//-----------------------------------------------------------------------------------------------------------------------------
11121112

11131113
/******************************************************************************************************************************

src/cncult4.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ LOCAL RC addRep( TI rfi, char *name, RPTYCH rpTy, TI zi, IVLCH freq, SI putAtEnd
148148
rp->ownTi = rfi; // reference to report file
149149
rp->rpTy = rpTy; // type of report
150150
rp->rpFreq = freq; // 0 or frequency of report
151-
rp->rpBtuSf = 1e6f; // energy print scale factor SHOULD MATCH DEFAULT IN CNCULT.C:rpT[] and exT[].
151+
rp->rpBtuSf = 1e6f; // energy print scale factor SHOULD MATCH DEFAULT IN cncult.c:rpT[] and exT[].
152152
rp->rpCond = 1; // make report print
153153
rp->isExport = 0; // is report, not an export
154154
rp->putAtEnd = putAtEnd; // put-after-user's-reports request. Only place set, 11-91.

src/cnguts.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ extern SI cnRunSerial; // incremented in cgInit; copied to Topi.runSerial in c
194194
extern VROUTINFO* UnspoolInfo; // dm array of info re unspooling virtual reports into actual report files.
195195
// set up in cncult.cpp; format is for vrUnspool. vrpak.h struct.
196196

197-
//---------------------- CGSOLAR.CPP PUBLIC VARIABLE ------------------------
197+
//---------------------- cgsolar.cpp PUBLIC VARIABLE ------------------------
198198
extern int slrCalcJDays[13]; // jDay for slr calcs or ausz DT decision for months 1-12. [0] for heat design day.
199199

200200

src/cprint.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Use of this source code is governed by a BSD-style license
33
// that can be found in the LICENSE file.
44

5-
/* CPRINT.H: printer defines used externally, for cprint.c
5+
/* cprint.h: printer defines used externally, for cprint.c
66
CSE version derived from prpak.h 8-28-91 */
77

88

src/cse.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// that can be found in the LICENSE file.
44

55
///////////////////////////////////////////////////////////////////////////////
6-
// CSE.cpp : Main program module
6+
// cse.cpp : Main program module
77
// Defines entry points
88
///////////////////////////////////////////////////////////////////////////////
99

src/cul.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4428,7 +4428,7 @@ LOCAL void FC clrBeenHeres( CULT *c)
44284428
} // clrBeenHeres
44294429

44304430

4431-
// ==================== CUL.CPP ERROR MESSAGE INTERFACES =====================
4431+
// ==================== cul.cpp error message interfaces =====================
44324432
// primarily for use from check-functions and run code, eg in cncult.cpp.
44334433
// Also error functions in cuparse.cpp and cutok.cpp are called directly. */
44344434
//-----------------------------------------------------------------------------

src/dhwcalc.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// that can be found in the LICENSE file.
44

55
///////////////////////////////////////////////////////////////////////////////
6-
// DHWCalc.cpp -- Domestic Hot Water model implementation
6+
// dhwcalc.cpp -- Domestic Hot Water model implementation
77
///////////////////////////////////////////////////////////////////////////////
88

99
#include "cnglob.h"

0 commit comments

Comments
 (0)