1
0
mirror of https://github.com/DxWnd/DxWnd.reloaded synced 2024-12-30 09:25:35 +01:00
DxWnd.reloaded/host/TabRegistry.cpp
gho tik 6883c264d4 v2_03_91_src_fx4
Former-commit-id: 2a0a9d30c2dab0c0808e956988867df4086b1d00
2017-03-06 11:47:39 -05:00

41 lines
1.0 KiB
C++

// TabRegistry.cpp : implementation file
//
#include "stdafx.h"
#include "TargetDlg.h"
#include "TabRegistry.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CTabRegistry dialog
CTabRegistry::CTabRegistry(CWnd* pParent /*=NULL*/)
// : CTargetDlg(pParent)
: CDialog(CTabRegistry::IDD, pParent)
{
//{{AFX_DATA_INIT(CTabRegistry)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
void CTabRegistry::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
CTargetDlg *cTarget = ((CTargetDlg *)(this->GetParent()->GetParent()));
DDX_Text(pDX, IDC_REGISTRY, cTarget->m_Registry);
}
BEGIN_MESSAGE_MAP(CTabRegistry, CDialog)
//{{AFX_MSG_MAP(CTabRegistry)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CTabRegistry message handlers