src/gui/dialogs/qfileinfogatherer.cpp
changeset 3 41300fa6a67c
parent 0 1918ee327afb
child 4 3b1da2848fc7
equal deleted inserted replaced
2:56cd8111b7f7 3:41300fa6a67c
    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 /*!