1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-28 05:29:48 +00:00
freebsd-ports/devel/lincvs/files/patch-LogDialogImpl.cpp
Markus Brueffer 00e41ef8c1 - Update to version 1.3.2
- Fix build with gcc 3.4 [1]

Reported by:	pointyhat via kris [1]
2004-08-20 10:32:19 +00:00

13 lines
470 B
C++

--- src/LogDialogImpl.cpp.orig Fri Aug 20 10:57:57 2004
+++ src/LogDialogImpl.cpp Fri Aug 20 11:00:34 2004
@@ -806,7 +806,8 @@
break;
}
case EDIT_REVISION_CMD: {
- setPermission(QFile(m_tmpDiffFileNameA),READABLE);//don't think you could change the file
+ QFile tmpFile(m_tmpDiffFileNameA);
+ setPermission(tmpFile, READABLE);//don't think you could change the file
emit editFile(m_tmpDiffFileNameA);
break;
}