Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Main
Synchronet
Compare Revisions
0e7cd2a7e27b6a74b5f98766d0ef7e8d4b5b03da...54c0696a53ba7406be4b93e11f3f696c58687b30
Commits (2)
Update comment header block. That's all.
· ee625d39
Rob Swindell
authored
Mar 31, 2022
ee625d39
Total timeon stats in days/hours/min format instead just massive minutes.
· 54c0696a
Rob Swindell
authored
Mar 31, 2022
54c0696a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
15 deletions
+1
-15
src/sbbs3/ctrl/MainFormUnit.cpp
src/sbbs3/ctrl/MainFormUnit.cpp
+1
-1
src/sbbs3/ctrl/StatsFormUnit.cpp
src/sbbs3/ctrl/StatsFormUnit.cpp
+0
-14
No files found.
src/sbbs3/ctrl/MainFormUnit.cpp
View file @
54c0696a
...
...
@@ -1480,7 +1480,7 @@ void __fastcall TMainForm::StatsTimerTick(TObject *Sender)
StatsForm
->
TotalLogons
->
Caption
=
AnsiString
(
stats
.
logons
);
StatsForm
->
LogonsToday
->
Caption
=
AnsiString
(
stats
.
ltoday
);
StatsForm
->
TotalTimeOn
->
Caption
=
AnsiString
(
stats
.
timeon
);
StatsForm
->
TotalTimeOn
->
Caption
=
AnsiString
(
minutes_to_str
(
stats
.
timeon
,
str
,
sizeof
(
str
))
);
StatsForm
->
TimeToday
->
Caption
=
AnsiString
(
stats
.
ttoday
);
StatsForm
->
TotalEMail
->
Caption
=
AnsiString
(
getmail
(
&
cfg
,
0
,
0
,
0
));
StatsForm
->
EMailToday
->
Caption
=
AnsiString
(
stats
.
etoday
);
...
...
src/sbbs3/ctrl/StatsFormUnit.cpp
View file @
54c0696a
/* Synchronet Control Panel (GUI Borland C++ Builder Project for Win32) */
/* $Id: StatsFormUnit.cpp,v 1.3 2018/07/24 01:11:29 rswindell Exp $ */
/****************************************************************************
* @format.tab-size 4 (Plain Text/Source Code File Header) *
* @format.use-tabs true (see http://www.synchro.net/ptsc_hdr.html) *
...
...
@@ -15,21 +13,9 @@
* See the GNU General Public License for more details: gpl.txt or *
* http://www.fsf.org/copyleft/gpl.html *
* *
* Anonymous FTP access to the most recent released source is available at *
* ftp://vert.synchro.net, ftp://cvs.synchro.net and ftp://ftp.synchro.net *
* *
* Anonymous CVS access to the development source and modification history *
* is available at cvs.synchro.net:/cvsroot/sbbs, example: *
* cvs -d :pserver:anonymous@cvs.synchro.net:/cvsroot/sbbs login *
* (just hit return, no password is necessary) *
* cvs -d :pserver:anonymous@cvs.synchro.net:/cvsroot/sbbs checkout src *
* *
* For Synchronet coding style and modification guidelines, see *
* http://www.synchro.net/source.html *
* *
* You are encouraged to submit any modifications (preferably in Unix diff *
* format) via e-mail to mods@synchro.net *
* *
* Note: If this box doesn't appear square, then you need to fix your tabs. *
****************************************************************************/
...
...