GME  13
SVNDialogCommit.cpp
Go to the documentation of this file.
00001 // SVNDialogCommit.cpp : implementation file
00002 //
00003 
00004 #include "stdafx.h"
00005 #include "SVNDialogCommit.h"
00006 #include "afxdialogex.h"
00007 
00008 
00009 // CSVNDialogCommit dialog
00010 
00011 IMPLEMENT_DYNAMIC(CSVNDialogCommit, CDialogEx)
00012 
00013 CSVNDialogCommit::CSVNDialogCommit(CWnd* pParent /*=NULL*/)
00014         : CDialogEx(CSVNDialogCommit::IDD, pParent)
00015         , filename(_T(""))
00016         , repository(_T(""))
00017         , revision(0)
00018         , logMessage(_T(""))
00019 {
00020 
00021 }
00022 
00023 CSVNDialogCommit::~CSVNDialogCommit()
00024 {
00025 }
00026 
00027 void CSVNDialogCommit::DoDataExchange(CDataExchange* pDX)
00028 {
00029         CDialogEx::DoDataExchange(pDX);
00030         DDX_Text(pDX, IDC_EDIT_SVNCOMMIT_FILENAME, filename);
00031         DDX_Text(pDX, IDC_EDIT_SVNCOMMIT_REPO, repository);
00032         DDX_Text(pDX, IDC_EDIT_SVNCOMMIT_REVISION, revision);
00033         DDX_Text(pDX, IDC_EDIT_SVNCOMMIT_LOG, logMessage);
00034 }
00035 
00036 
00037 BEGIN_MESSAGE_MAP(CSVNDialogCommit, CDialogEx)
00038 END_MESSAGE_MAP()
00039 
00040 
00041 // CSVNDialogCommit message handlers