author | Michael Krelin <hacker@klever.net> | 2012-12-08 21:19:17 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2012-12-11 21:59:29 (UTC) |
commit | 8808689fe340bec6e90ab13dd502292b0579cf1f (patch) (unidiff) | |
tree | 45b7c863151341f687b74e40bffcbd7ab5468783 /Retrier.cpp | |
parent | 6e7e413ca364d79673e523c09767c18e7cff1bec (diff) | |
download | pumpkin-8808689fe340bec6e90ab13dd502292b0579cf1f.zip pumpkin-8808689fe340bec6e90ab13dd502292b0579cf1f.tar.gz pumpkin-8808689fe340bec6e90ab13dd502292b0579cf1f.tar.bz2 |
initial osx portosx/0.0
Signed-off-by: Michael Krelin <hacker@klever.net>
-rw-r--r-- | Retrier.cpp | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/Retrier.cpp b/Retrier.cpp deleted file mode 100644 index 15b9fc3..0000000 --- a/Retrier.cpp +++ b/dev/null | |||
@@ -1,46 +0,0 @@ | |||
1 | // Retrier.cpp : implementation file | ||
2 | // | ||
3 | |||
4 | #include "stdafx.h" | ||
5 | #include "PumpKIN.h" | ||
6 | #include "Retrier.h" | ||
7 | |||
8 | #include "PumpKINDlg.h" | ||
9 | |||
10 | #ifdef _DEBUG | ||
11 | #define new DEBUG_NEW | ||
12 | #undef THIS_FILE | ||
13 | static char THIS_FILE[] = __FILE__; | ||
14 | #endif | ||
15 | |||
16 | ///////////////////////////////////////////////////////////////////////////// | ||
17 | // CRetrier | ||
18 | |||
19 | CRetrier::CRetrier(CPumpKINDlg *daddy) | ||
20 | : m_Daddy(daddy) | ||
21 | { | ||
22 | } | ||
23 | |||
24 | CRetrier::~CRetrier() | ||
25 | { | ||
26 | } | ||
27 | |||
28 | |||
29 | BEGIN_MESSAGE_MAP(CRetrier, CWnd) | ||
30 | //{{AFX_MSG_MAP(CRetrier) | ||
31 | ON_WM_TIMER() | ||
32 | //}}AFX_MSG_MAP | ||
33 | END_MESSAGE_MAP() | ||
34 | |||
35 | |||
36 | ///////////////////////////////////////////////////////////////////////////// | ||
37 | // CRetrier message handlers | ||
38 | |||
39 | void CRetrier::OnTimer(UINT nIDEvent) | ||
40 | { | ||
41 | ASSERT(m_Daddy); | ||
42 | CXferSocket *socket; | ||
43 | if(m_Daddy->m_Xfers.Lookup(nIDEvent,socket)) | ||
44 | socket->OnRetry(); | ||
45 | CWnd::OnTimer(nIDEvent); | ||
46 | } | ||