Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
1.5 KiB

  1. // DeleteGroupItem.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "viewex.h"
  5. #include "delgrpit.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /***********************************************************
  12. Function:
  13. Arguments:
  14. Return:
  15. Purpose:
  16. Author(s):
  17. Revision:
  18. Date:
  19. ***********************************************************/
  20. CDeleteGroupItem::CDeleteGroupItem(CWnd* pParent /*=NULL*/)
  21. : CDialog(CDeleteGroupItem::IDD, pParent)
  22. {
  23. //{{AFX_DATA_INIT(CDeleteGroupItem)
  24. m_strItemName = _T("");
  25. m_strParent = _T("");
  26. m_strItemType = _T("");
  27. //}}AFX_DATA_INIT
  28. }
  29. /***********************************************************
  30. Function:
  31. Arguments:
  32. Return:
  33. Purpose:
  34. Author(s):
  35. Revision:
  36. Date:
  37. ***********************************************************/
  38. void CDeleteGroupItem::DoDataExchange(CDataExchange* pDX)
  39. {
  40. CDialog::DoDataExchange(pDX);
  41. //{{AFX_DATA_MAP(CDeleteGroupItem)
  42. DDX_Text(pDX, IDC_ITEMNAME, m_strItemName);
  43. DDX_Text(pDX, IDC_PARENT, m_strParent);
  44. DDX_Text(pDX, IDC_ITEMTYPE, m_strItemType);
  45. //}}AFX_DATA_MAP
  46. }
  47. BEGIN_MESSAGE_MAP(CDeleteGroupItem, CDialog)
  48. //{{AFX_MSG_MAP(CDeleteGroupItem)
  49. // NOTE: the ClassWizard will add message map macros here
  50. //}}AFX_MSG_MAP
  51. END_MESSAGE_MAP()
  52. /////////////////////////////////////////////////////////////////////////////
  53. // CDeleteGroupItem message handlers