~bialix/fte-mirror/tag-fixup.before-cvs-support

« back to all changes in this revision

Viewing changes to src/o_routine.cpp

  • Committer: cvs2svn
  • Date: 2003-07-16 00:04:56 UTC
  • mfrom: (201)
  • Revision ID: admin@example.com-20030716000456-79o4ogy6zduzth2y
Tags: before-cvs-support
This commit was manufactured by cvs2svn to create tag 'before-cvs-support'.

Show diffs side-by-side

added added

removed removed

Lines of Context:
113
113
    strncpy(AName, "Routines", MaxLen);
114
114
}
115
115
 
116
 
void RoutineView::GetInfo(char *AInfo, int /*MaxLen*/) {
 
116
void RoutineView::GetInfo(char *AInfo, int MaxLen) {
117
117
    sprintf(AInfo, "%2d %04d/%03d Routines (%s)", ModelNo, Row + 1, Count, Buffer->FileName);
118
118
}
119
119
 
120
 
void RoutineView::GetTitle(char *ATitle, int /*MaxLen*/, char *ASTitle, int SMaxLen) {
 
120
void RoutineView::GetTitle(char *ATitle, int MaxLen, char *ASTitle, int SMaxLen) {
121
121
    sprintf(ATitle, "Routines: %s", Buffer->FileName);
122
122
    strncpy(ASTitle, "Routines", SMaxLen);
123
123
    ASTitle[SMaxLen - 1] = 0;