DragonNest/Client/PatchBuilder/NewProfile.cpp
Cussrro 47f7895977 Revert "修复编码问题"
This reverts commit 9e69c01767.
2024-12-21 10:04:04 +08:00

35 lines
568 B
C++

// NewProfile.cpp : implementation file
//
#include "stdafx.h"
#include "PatchBuilder.h"
#include "NewProfile.h"
// CNewProfile dialog
IMPLEMENT_DYNAMIC(CNewProfile, CDialog)
CNewProfile::CNewProfile(CWnd* pParent /*=NULL*/)
: CDialog(CNewProfile::IDD, pParent)
, m_szProfileName(_T(""))
{
}
CNewProfile::~CNewProfile()
{
}
void CNewProfile::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
DDX_Text(pDX, IDC_PROFILE_NAME, m_szProfileName);
}
BEGIN_MESSAGE_MAP(CNewProfile, CDialog)
END_MESSAGE_MAP()
// CNewProfile message handlers