summaryrefslogtreecommitdiff
path: root/apps/windoze/CBuilder5/InstallMgr/FTPDownload.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'apps/windoze/CBuilder5/InstallMgr/FTPDownload.cpp')
-rw-r--r--apps/windoze/CBuilder5/InstallMgr/FTPDownload.cpp29
1 files changed, 0 insertions, 29 deletions
diff --git a/apps/windoze/CBuilder5/InstallMgr/FTPDownload.cpp b/apps/windoze/CBuilder5/InstallMgr/FTPDownload.cpp
deleted file mode 100644
index eb74177..0000000
--- a/apps/windoze/CBuilder5/InstallMgr/FTPDownload.cpp
+++ /dev/null
@@ -1,29 +0,0 @@
-//---------------------------------------------------------------------------
-#include <vcl.h>
-#pragma hdrstop
-
-#include "FTPDownload.h"
-#pragma package(smart_init)
-//---------------------------------------------------------------------------
-// Important: Methods and properties of objects in VCL can only be
-// used in a method called using Synchronize, for example:
-//
-// Synchronize(UpdateCaption);
-//
-// where UpdateCaption could look like:
-//
-// void __fastcall FTPDownload::UpdateCaption()
-// {
-// Form1->Caption = "Updated in a thread";
-// }
-//---------------------------------------------------------------------------
-__fastcall FTPDownload::FTPDownload(bool CreateSuspended)
- : TThread(CreateSuspended)
-{
-}
-//---------------------------------------------------------------------------
-void __fastcall FTPDownload::Execute()
-{
- //---- Place thread code here ----
-}
-//---------------------------------------------------------------------------