File: AskConvert.cpp

package info (click to toggle)
aime 0.60.3-7
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 6,016 kB
  • ctags: 5,217
  • sloc: cpp: 77,611; ansic: 3,765; sh: 2,996; makefile: 234; sed: 93
file content (50 lines) | stat: -rw-r--r-- 962 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// AskConvert.cpp : implementation file
//

#include "stdafx.h"
#include "aime_w32.h"
#include "AskConvert.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CAskConvert dialog


CAskConvert::CAskConvert(CWnd* pParent /*=NULL*/)
	: CDialog(CAskConvert::IDD, pParent)
{
	//{{AFX_DATA_INIT(CAskConvert)
	m_filename = _T("");
	//}}AFX_DATA_INIT
}


void CAskConvert::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CAskConvert)
	DDX_Text(pDX, IDC_FILENAME, m_filename);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CAskConvert, CDialog)
	//{{AFX_MSG_MAP(CAskConvert)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CAskConvert message handlers

void CAskConvert::OnOK() 
{
	// TODO: Add extra validation here

	
	CDialog::OnOK();
}