Update of /cvsroot/pywin32/pywin32/Pythonwin
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv4239/Pythonwin
Modified Files:
win32uimodule.cpp
Log Message:
add blank lines between functions (from py3k branch)
Index: win32uimodule.cpp
===================================================================
RCS file: /cvsroot/pywin32/pywin32/Pythonwin/win32uimodule.cpp,v
retrieving revision 1.43
retrieving revision 1.44
diff -C2 -d -r1.43 -r1.44
*** win32uimodule.cpp 6 Dec 2008 00:38:29 -0000 1.43
--- win32uimodule.cpp 6 Dec 2008 01:50:53 -0000 1.44
***************
*** 152,155 ****
--- 152,156 ----
ctor = thector;
}
+
ui_type::~ui_type()
{
***************
*** 221,224 ****
--- 222,227 ----
return pNew;
}
+
+
/*static*/ BOOL ui_base_class::is_uiobject(PyObject *&o, ui_type *which)
{
***************
*** 262,265 ****
--- 265,269 ----
return FALSE;
}
+
BOOL ui_base_class::is_uiobject(ui_type *which)
{
***************
*** 307,310 ****
--- 311,315 ----
return -1;
}
+
/*static*/ PyObject *
ui_base_class::sui_repr( PyObject *op )
|