* change tr_stat.activityDate's and tr_stat.startedDate's type to time_t, since that's how everyone uses them anyway

* add a little more documentation to tr_stat and tr_ctor in transmission.h
This commit is contained in:
Charles Kerr
2008-05-23 20:04:41 +00:00
parent 03292f0bd8
commit 53d8574b11
10 changed files with 276 additions and 235 deletions

View File

@@ -97,7 +97,7 @@ doSave( GtkWindow * parent,
gtk_tree_model_get( model, &iter,
COL_TR_MSG, &node,
-1 );
date = rfc822date( (guint64)node->when * 1000u );
date = rfc822date( node->when );
switch( node->level ) {
case TR_MSG_DBG: levelStr = "debug"; break;
case TR_MSG_ERR: levelStr = "error"; break;