By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 756
Collapse All | Expand All

(-)tdelibs/kio/kio/kdirwatch.cpp (+3 lines)
Lines 1155-1160 Link Here
1155
    if(!e->dirty) return NoChange;
1155
    if(!e->dirty) return NoChange;
1156
    e->dirty = false;
1156
    e->dirty = false;
1157
  }
1157
  }
1158
  if (e->isDir) return Changed;
1158
#endif
1159
#endif
1159
1160
1160
  // Shouldn't happen: Ignore "unknown" notification method
1161
  // Shouldn't happen: Ignore "unknown" notification method
Lines 1184-1189 Link Here
1184
  if (exists) {
1185
  if (exists) {
1185
1186
1186
    if (e->m_status == NonExistent) {
1187
    if (e->m_status == NonExistent) {
1188
      // ctime is the 'creation time' on windows, but with qMax
1189
      // we get the latest change of any kind, on any platform.
1187
      e->m_ctime = stat_buf.st_ctime;
1190
      e->m_ctime = stat_buf.st_ctime;
1188
      e->m_status = Normal;
1191
      e->m_status = Normal;
1189
      e->m_nlink = stat_buf.st_nlink;
1192
      e->m_nlink = stat_buf.st_nlink;

Return to bug 756