mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-28 05:29:48 +00:00
00e41ef8c1
- Fix build with gcc 3.4 [1] Reported by: pointyhat via kris [1]
13 lines
470 B
C++
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;
|
|
}
|