[pywin32-checkins] pywin32/Pythonwin pythonframe.h,1.1,1.2
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2006-01-10 04:58:20
|
Update of /cvsroot/pywin32/pywin32/Pythonwin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21002 Modified Files: pythonframe.h Log Message: [ 1043738 ] Added SetFloatingFrameClass method to CPythonFrameWnd Index: pythonframe.h =================================================================== RCS file: /cvsroot/pywin32/pywin32/Pythonwin/pythonframe.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** pythonframe.h 1 Sep 1999 23:32:59 -0000 1.1 --- pythonframe.h 10 Jan 2006 04:58:08 -0000 1.2 *************** *** 9,12 **** --- 9,18 ---- class CPythonFrameWnd : public CPythonWndFramework<CFrameWnd> { DECLARE_DYNAMIC(CPythonFrameWnd); + public: + // m_pFloatingFrameClass is protected so we can't access + // it from the outside + void SetFloatingFrameClass(CRuntimeClass* frameClass) { + m_pFloatingFrameClass = frameClass; + } }; |