changed: in Request:

removed start_tm
         added start_date (PT::Date)
changed: in Session:
         removed: tm_time
         added: start_date (PT::Date)
         renamed: time -> start_time
         the same is for last_time
         now we have (last_time and last_date)



git-svn-id: svn://ttmath.org/publicrep/winix/trunk@838 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
2012-05-24 21:09:37 +00:00
parent db9d381a43
commit 5b845f1d03
11 changed files with 153 additions and 104 deletions

View File

@@ -77,11 +77,11 @@ void who_tab_time(Info & i)
return;
i.out << DateToStr( 0,
who_iterator->tm_time.tm_mon + 1,
who_iterator->tm_time.tm_mday,
who_iterator->tm_time.tm_hour,
who_iterator->tm_time.tm_min,
who_iterator->tm_time.tm_sec );
who_iterator->start_date.month,
who_iterator->start_date.day,
who_iterator->start_date.hour,
who_iterator->start_date.min,
who_iterator->start_date.sec );
}
@@ -91,11 +91,11 @@ void who_tab_last_time(Info & i)
return;
i.out << DateToStr( 0,
who_iterator->tm_last_time.tm_mon + 1,
who_iterator->tm_last_time.tm_mday,
who_iterator->tm_last_time.tm_hour,
who_iterator->tm_last_time.tm_min,
who_iterator->tm_last_time.tm_sec );
who_iterator->last_date.month,
who_iterator->last_date.day,
who_iterator->last_date.hour,
who_iterator->last_date.min,
who_iterator->last_date.sec );
}