freebsd-ports/ftp/wxdfast/files/patch-src__FinishedList.cpp
Alejandro Pulver 28fe8e4844 wxDownload Fast (also known as wxDFast) is an open source download manager. It
is multi-platform and builds on Windows(2k,XP), Linux and Mac OS X. Besides
that, it is a multi-threaded download manager. This means that it can split a
file into several pieces and download the pieces simultaneously.

Features:

* Faster downloads (with Segmented/Multi-threaded/Accelerated transfers).
* Download resuming (Pause and restart where you stopped).
* Download scheduling.
* Organizes files you have already downloaded.
* View server messages (HTTP, FTP, file://). No HTTPS support.
* Available in multiple languages and easily translated. Now available in
  Portuguese [Brazil], Spanish, English, German, Russian, Hungarian, Armenian
  and Indonesian.
* Connection to FTP servers which require a password.
* Calculates the MD5 checksum of downloaded files so they can be easily.
  verified.
* Metalink support.

WWW: http://dfast.sourceforge.net/
2006-12-07 17:52:07 +00:00

20 lines
609 B
C++

--- ./src/FinishedList.cpp.orig Sun Oct 29 12:08:39 2006
+++ ./src/FinishedList.cpp Tue Nov 7 19:55:03 2006
@@ -186,7 +186,7 @@
wxDateTime date;
value = 0;
config->Read(START_REG,&value);
- date.Set(value);
+ date.Set((time_t)value);
infolist->SetItem(5,1,date.Format());
}
@@ -194,7 +194,7 @@
wxDateTime date;
value = 0;
config->Read(END_REG,&value);
- date.Set(value);
+ date.Set((time_t)value);
infolist->SetItem(6,1,date.Format());
}