equal
deleted
inserted
replaced
73 #else |
73 #else |
74 m_resolveSymlinks = true; |
74 m_resolveSymlinks = true; |
75 #endif |
75 #endif |
76 #ifndef QT_NO_FILESYSTEMWATCHER |
76 #ifndef QT_NO_FILESYSTEMWATCHER |
77 watcher = new QFileSystemWatcher(this); |
77 watcher = new QFileSystemWatcher(this); |
78 connect(watcher, SIGNAL(directoryChanged(const QString &)), this, SLOT(list(const QString &))); |
78 connect(watcher, SIGNAL(directoryChanged(QString)), this, SLOT(list(QString))); |
79 connect(watcher, SIGNAL(fileChanged(const QString &)), this, SLOT(updateFile(const QString &))); |
79 connect(watcher, SIGNAL(fileChanged(QString)), this, SLOT(updateFile(QString))); |
80 #endif |
80 #endif |
81 start(LowPriority); |
81 start(LowPriority); |
82 } |
82 } |
83 |
83 |
84 /*! |
84 /*! |