diff --git a/uppbox/Uvs2/DlgFiles.cpp b/uppbox/Uvs2/DlgFiles.cpp index afeb0bbbc..c13c57d17 100644 --- a/uppbox/Uvs2/DlgFiles.cpp +++ b/uppbox/Uvs2/DlgFiles.cpp @@ -763,11 +763,11 @@ private: bool OnLoadGateHeaders(String data); bool OnLoadGateAll(String data); bool OnDecompressGate(int len, int total); - bool OnFtpSaveGate(); - bool OnFtpLoadGate(); + bool OnFtpSaveGate(int, int); + bool OnFtpLoadGate(int, int); bool OnSaveGate(int len, int total); bool OnTreeGate(int count, int total); - bool OnFtpProgress(); + bool OnFtpProgress(int, int); void OnWaitConnect(); void DoViewSortName(); @@ -3292,7 +3292,7 @@ void DlgFiles::SetProgressSize(int size, int total, int start_msecs) progress.Text(out); } -bool DlgFiles::OnFtpLoadGate() +bool DlgFiles::OnFtpLoadGate(int, int) { return OnLoadGateAll(ftp_client.GetLoadedPart()); } @@ -3313,7 +3313,7 @@ bool DlgFiles::OnDecompressGate(int len, int total) return IsCanceled(); } -bool DlgFiles::OnFtpSaveGate() +bool DlgFiles::OnFtpSaveGate(int, int) { return OnSaveGate(ftp_client.GetSavePos(), ftp_client.GetSaveTotal()); } @@ -3326,7 +3326,7 @@ bool DlgFiles::OnSaveGate(int done, int total) return IsCanceled(); } -bool DlgFiles::OnFtpProgress() +bool DlgFiles::OnFtpProgress(int, int) { return IsCanceled(); } diff --git a/uppbox/Uvs2/version.h b/uppbox/Uvs2/version.h index 5c2a69a57..06df795e1 100644 --- a/uppbox/Uvs2/version.h +++ b/uppbox/Uvs2/version.h @@ -1,8 +1,8 @@ #ifndef __uvs_version__ #define __uvs_version__ -#define UVS2_VERSION "2.41" -#define UVS2_DATE Date(2008, 3, 7) -#define UVS2_COPYRIGHT "Copyright © 2002-2007 Ultimate Development, spol. s r.o." +#define UVS2_VERSION "2.42" +#define UVS2_DATE Date(2009, 12, 8) +#define UVS2_COPYRIGHT "Copyright © 2002-2009 Ultimate Development, spol. s r.o." #endif