openmohaa/code/gamespy/Chat/chatty/KickReasonDlg.cpp
2023-02-04 21:00:01 +01:00

43 lines
962 B
C++

// KickReasonDlg.cpp : implementation file
//
#include "stdafx.h"
#include "chatty.h"
#include "KickReasonDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CKickReasonDlg dialog
CKickReasonDlg::CKickReasonDlg(CWnd* pParent /*=NULL*/)
: CDialog(CKickReasonDlg::IDD, pParent)
{
//{{AFX_DATA_INIT(CKickReasonDlg)
m_reason = _T("");
//}}AFX_DATA_INIT
}
void CKickReasonDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CKickReasonDlg)
DDX_Text(pDX, IDC_REASON, m_reason);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CKickReasonDlg, CDialog)
//{{AFX_MSG_MAP(CKickReasonDlg)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CKickReasonDlg message handlers