Revision: 3979
http://svn.sourceforge.net/winmerge/?rev=3979&view=rev
Author: kimmov
Date: 2006-12-19 06:00:24 -0800 (Tue, 19 Dec 2006)
Log Message:
-----------
PATCH: [ 1618358 ] Fix warning about non-standard extension with enum
Modified Paths:
--------------
trunk/Src/Changes.txt
trunk/Src/MainFrm.cpp
Modified: trunk/Src/Changes.txt
===================================================================
--- trunk/Src/Changes.txt 2006-12-18 22:50:24 UTC (rev 3978)
+++ trunk/Src/Changes.txt 2006-12-19 14:00:24 UTC (rev 3979)
@@ -2,6 +2,10 @@
Add new items to top.
(This summarizes all changes to all files under Src, including Src\Languages.)
+2006-12-19 Kimmo
+ PATCH: [ 1618358 ] Fix warning about non-standard extension with enum
+ Src: MainFrm.cpp
+
2006-12-18 Kimmo
PATCH: [ 1617502 ] Cleanup use of enum in MovedLines
Src: MovedLines.cpp
Modified: trunk/Src/MainFrm.cpp
===================================================================
--- trunk/Src/MainFrm.cpp 2006-12-18 22:50:24 UTC (rev 3978)
+++ trunk/Src/MainFrm.cpp 2006-12-19 14:00:24 UTC (rev 3979)
@@ -887,7 +887,7 @@
case IDYES:
CFile::GetStatus(strSavePath, status);
status.m_mtime = 0; // Avoid unwanted changes
- status.m_attribute &= ~CFile::Attribute::readOnly;
+ status.m_attribute &= ~CFile::readOnly;
CFile::SetStatus(strSavePath, status);
nRetVal = IDYES;
break;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|