Revision: 3888
http://svn.sourceforge.net/winmerge/?rev=3888&view=rev
Author: sdottaka
Date: 2006-12-02 05:51:00 -0800 (Sat, 02 Dec 2006)
Log Message:
-----------
BUG: [ 1589324 ] WinMegee crashes on copy
Modified Paths:
--------------
trunk/Src/Changes.txt
trunk/Src/Common/CShellFileOp.cpp
Modified: trunk/Src/Changes.txt
===================================================================
--- trunk/Src/Changes.txt 2006-12-02 13:33:48 UTC (rev 3887)
+++ trunk/Src/Changes.txt 2006-12-02 13:51:00 UTC (rev 3888)
@@ -3,6 +3,10 @@
(This summarizes all changes to all files under Src, including Src\Languages.)
2006-12-02 Takashi
+ BUG: [ 1589324 ] WinMegee crashes on copy
+ Src: FileFilterMgr.cpp
+
+2006-12-02 Takashi
Fix filefilter regexp uppercasing for trunk
Src: FileFilterMgr.cpp
Modified: trunk/Src/Common/CShellFileOp.cpp
===================================================================
--- trunk/Src/Common/CShellFileOp.cpp 2006-12-02 13:33:48 UTC (rev 3887)
+++ trunk/Src/Common/CShellFileOp.cpp 2006-12-02 13:51:00 UTC (rev 3888)
@@ -527,8 +527,9 @@
}
// drum roll please....
+ ((CFrameWnd *)AfxGetMainWnd())->BeginModalState();
nAPIRet = SHFileOperation ( &m_rFOS ); // tah-dah!
-
+ ((CFrameWnd *)AfxGetMainWnd())->EndModalState();
// Save the return value from the API.
if ( NULL != lpnAPIReturn )
{
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|