Show GUI friendly diffstat after pull
[TortoiseGit.git] / src / TortoiseGitBlame / EditGotoDlg.cpp
blob4c4eaea4203a35ef86605f388fe079f2fa911997
1 // EditGoto.cpp : implementation file
2 //
4 #include "stdafx.h"
5 #include "TortoiseGitBlame.h"
6 #include "EditGotoDlg.h"
9 // CEditGotoDlg dialog
11 IMPLEMENT_DYNAMIC(CEditGotoDlg, CDialog)
13 CEditGotoDlg::CEditGotoDlg(CWnd* pParent /*=NULL*/)
14 : CDialog(CEditGotoDlg::IDD, pParent)
15 , m_LineNumber(0)
20 CEditGotoDlg::~CEditGotoDlg()
24 void CEditGotoDlg::DoDataExchange(CDataExchange* pDX)
26 CDialog::DoDataExchange(pDX);
27 DDX_Text(pDX, IDC_LINENUMBER, m_LineNumber);
28 DDV_MinMaxUInt(pDX, m_LineNumber, 0, 40000000);
32 BEGIN_MESSAGE_MAP(CEditGotoDlg, CDialog)
33 ON_EN_CHANGE(IDC_LINENUMBER, &CEditGotoDlg::OnEnChangeLinenumber)
34 END_MESSAGE_MAP()
37 // CEditGotoDlg message handlers
39 void CEditGotoDlg::OnEnChangeLinenumber()
41 // TODO: If this is a RICHEDIT control, the control will not
42 // send this notification unless you override the CDialog::OnInitDialog()
43 // function and call CRichEditCtrl().SetEventMask()
44 // with the ENM_CHANGE flag ORed into the mask.
46 // TODO: Add your control notification handler code here