blob: c9cd7e16ae6ccb44fdb0f02e8f78c7bc0b0d2904 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
--- 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;
}
|