-
Notifications
You must be signed in to change notification settings - Fork 851
Expand file tree
/
Copy pathpythonRichEditCntr.cpp
More file actions
43 lines (30 loc) · 1.25 KB
/
pythonRichEditCntr.cpp
File metadata and controls
43 lines (30 loc) · 1.25 KB
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
/* win32RichEditCntr : implementation file
Created March 1996, Mark Hammond (MHammond@skippinet.com.au)
Note that this source file contains embedded documentation.
This documentation consists of marked up text inside the
C comments, and is prefixed with an '@' symbol. The source
files are processed by a tool called "autoduck" which
generates Windows .hlp files.
@doc
*/
#include "stdafx.h"
#include "win32win.h"
#include "win32doc.h"
#include "win32control.h"
#include "win32RichEdit.h"
#include "pythonRichEditCntr.h"
#ifdef _DEBUG
#undef THIS_FILE
static char BASED_CODE THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CPythonCntrItem implementation
IMPLEMENT_SERIAL(CPythonCntrItem, CRichEditCntrItem, 0)
CPythonCntrItem::CPythonCntrItem(REOBJECT *preo, CRichEditDoc *pContainer) : CRichEditCntrItem(preo, pContainer) {}
/////////////////////////////////////////////////////////////////////////////
// CPythonCntrItem diagnostics
#ifdef _DEBUG
void CPythonCntrItem::AssertValid() const { CRichEditCntrItem::AssertValid(); }
void CPythonCntrItem::Dump(CDumpContext &dc) const { CRichEditCntrItem::Dump(dc); }
#endif
/////////////////////////////////////////////////////////////////////////////