summaryrefslogtreecommitdiffstats
path: root/redhat/tdelibs/kdelibs-3.5.13-fix_kdirwatch.patch
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2014-10-06 12:16:27 -0500
committerTimothy Pearson <[email protected]>2014-10-06 12:16:27 -0500
commitecd088049d4aa2e8262f4cc1e0ac45e135964229 (patch)
tree49ed22e9e7852fd3f26854aecf41c96169d59629 /redhat/tdelibs/kdelibs-3.5.13-fix_kdirwatch.patch
parent855439d3f99b0c152c33ae76a06cce9853f9b8dd (diff)
parent01a7863524342e1aec31679e55d08830cc571066 (diff)
downloadtde-packaging-ecd088049d4aa2e8262f4cc1e0ac45e135964229.tar.gz
tde-packaging-ecd088049d4aa2e8262f4cc1e0ac45e135964229.zip
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tde-packaging
Diffstat (limited to 'redhat/tdelibs/kdelibs-3.5.13-fix_kdirwatch.patch')
-rw-r--r--redhat/tdelibs/kdelibs-3.5.13-fix_kdirwatch.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/redhat/tdelibs/kdelibs-3.5.13-fix_kdirwatch.patch b/redhat/tdelibs/kdelibs-3.5.13-fix_kdirwatch.patch
deleted file mode 100644
index c6792dfdc..000000000
--- a/redhat/tdelibs/kdelibs-3.5.13-fix_kdirwatch.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-diff -urN tdelibs/kio/kio/kdirwatch.cpp tdelibs.new/kio/kio/kdirwatch.cpp
---- tdelibs/kio/kio/kdirwatch.cpp 2012-04-05 13:26:08.000000000 -0500
-+++ tdelibs.new/kio/kio/kdirwatch.cpp 2012-04-08 17:51:15.000000000 -0500
-@@ -1155,6 +1155,7 @@
- if(!e->dirty) return NoChange;
- e->dirty = false;
- }
-+ if (e->isDir) return Changed;
- #endif
-
- // Shouldn't happen: Ignore "unknown" notification method
-@@ -1184,6 +1185,8 @@
- if (exists) {
-
- if (e->m_status == NonExistent) {
-+ // ctime is the 'creation time' on windows, but with qMax
-+ // we get the latest change of any kind, on any platform.
- e->m_ctime = stat_buf.st_ctime;
- e->m_status = Normal;
- e->m_nlink = stat_buf.st_nlink;