Update of /cvsroot/pywin32/pywin32
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv17019
Modified Files:
setup.py CHANGES.txt
Log Message:
win32com.axcontrol gets support for interfaces OleControlSite,
OleInPlaceActiveObject, OleInPlaceFrame and OleInPlaceUIWindow interfaces
and OleTranslateAccelerator function.
Index: setup.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/setup.py,v
retrieving revision 1.83
retrieving revision 1.84
diff -C2 -d -r1.83 -r1.84
*** setup.py 6 Oct 2008 00:45:17 -0000 1.83
--- setup.py 2 Nov 2008 11:47:47 -0000 1.84
***************
*** 1441,1446 ****
WinExt_win32com('axcontrol', pch_header="axcontrol_pch.h",
sources=("""
! %(axcontrol)s/AXControl.cpp %(axcontrol)s/PyIOleControl.cpp
%(axcontrol)s/PyIOleInPlaceSiteEx.cpp %(axcontrol)s/PyISpecifyPropertyPages.cpp
%(axcontrol)s/PyIObjectWithSite.cpp %(axcontrol)s/PyIOleInPlaceObject.cpp
%(axcontrol)s/PyIOleInPlaceSiteWindowless.cpp %(axcontrol)s/PyIViewObject.cpp
--- 1441,1449 ----
WinExt_win32com('axcontrol', pch_header="axcontrol_pch.h",
sources=("""
! %(axcontrol)s/AXControl.cpp
! %(axcontrol)s/PyIOleControl.cpp %(axcontrol)s/PyIOleControlSite.cpp
! %(axcontrol)s/PyIOleInPlaceActiveObject.cpp
%(axcontrol)s/PyIOleInPlaceSiteEx.cpp %(axcontrol)s/PyISpecifyPropertyPages.cpp
+ %(axcontrol)s/PyIOleInPlaceUIWindow.cpp %(axcontrol)s/PyIOleInPlaceFrame.cpp
%(axcontrol)s/PyIObjectWithSite.cpp %(axcontrol)s/PyIOleInPlaceObject.cpp
%(axcontrol)s/PyIOleInPlaceSiteWindowless.cpp %(axcontrol)s/PyIViewObject.cpp
Index: CHANGES.txt
===================================================================
RCS file: /cvsroot/pywin32/pywin32/CHANGES.txt,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -d -r1.29 -r1.30
*** CHANGES.txt 2 Oct 2008 10:16:11 -0000 1.29
--- CHANGES.txt 2 Nov 2008 11:47:47 -0000 1.30
***************
*** 9,12 ****
--- 9,16 ----
----------------
+ * win32com.axcontrol gets support for interfaces OleControlSite,
+ OleInPlaceActiveObject, OleInPlaceFrame and OleInPlaceUIWindow interfaces
+ and OleTranslateAccelerator function.
+
* MsgWaitForMultipleObjectsEx() would crash in all cases. Fix from
Ziga Seilnacht via [2141368].
|