author | Michael Krelin <hacker@klever.net> | 2006-03-13 21:46:34 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2006-03-13 21:46:34 (UTC) |
commit | 05d4b744ffcfd511f7c99969e9e32bf92afdfe4d (patch) (side-by-side diff) | |
tree | 75734215897c97929ab8260aa999343ce8cf67ae | |
parent | 7a277bfa4ac93b794c22aad3237d60b47b9d9cd8 (diff) | |
download | pumpkin-05d4b744ffcfd511f7c99969e9e32bf92afdfe4d.zip pumpkin-05d4b744ffcfd511f7c99969e9e32bf92afdfe4d.tar.gz pumpkin-05d4b744ffcfd511f7c99969e9e32bf92afdfe4d.tar.bz2 |
bugfix
git-svn-id: http://svn.klever.net/kin/pumpkin/trunk@149 fe716a7a-6dde-0310-88d9-d003556173a8
-rw-r--r-- | PumpKINDlg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PumpKINDlg.cpp b/PumpKINDlg.cpp index 9786ef0..070f3e8 100644 --- a/PumpKINDlg.cpp +++ b/PumpKINDlg.cpp @@ -70,25 +70,25 @@ void CAboutDlg::DoDataExchange(CDataExchange* pDX) }
BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
//{{AFX_MSG_MAP(CAboutDlg)
ON_BN_CLICKED(IDC_KLEVERNET, OnKlevernet)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CPumpKINDlg dialog
CPumpKINDlg::CPumpKINDlg(CWnd* pParent /*=NULL*/)
- : CDialog(CPumpKINDlg::IDD, pParent)
+ : CDialog(CPumpKINDlg::IDD, pParent), m_MinSize(0,0)
{
m_Listener.m_Daddy = this;
m_bListen = TRUE;
m_ListenPort = 69;
m_bTFTPSubdirs = TRUE;
m_RRQMode = rrqAlwaysConfirm;
m_WRQMode = wrqAlwaysConfirm;
m_TFTPTimeOut = CTimeSpan(0,0,0,30);
m_RetryTimeOut = CTimeSpan(0,0,0,10);
m_LogLength = 100;
|