Changeset 1891 for trunk/source/prt_comment.cpp
- Timestamp:
- 03/27/08 12:40:50 (8 months ago)
- Files:
-
- 1 modified
-
trunk/source/prt_comment.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/prt_comment.cpp
r1854 r1891 160 160 wcnint(); 161 161 162 if( version .nBetaVer > 0 )162 if( version::Inst().nBetaVer > 0 ) 163 163 { 164 164 sprintf( chLine, 165 165 " !This is beta test version%4ld and is intended for testing only.", 166 version .nBetaVer );166 version::Inst().nBetaVer ); 167 167 bangin(chLine); 168 168 } … … 171 171 * to show that parts of the code need repair. 172 172 * lgRelease is true if this is release version */ 173 if( broke.lgFixit && !version .lgRelease )173 if( broke.lgFixit && !version::Inst().lgRelease ) 174 174 { 175 175 sprintf( chLine, " !The code needs to be fixed - search for fixit()." ); … … 180 180 * to show that parts of the code need to be reviewed. 181 181 * lgRelease is true if this is release version */ 182 if( broke.lgCheckit && !version .lgRelease )182 if( broke.lgCheckit && !version::Inst().lgRelease ) 183 183 { 184 184 sprintf( chLine, " !New code needs to be reviewed - search for CodeReview()." );
