Changeset 974

Show
Ignore:
Timestamp:
07/24/08 19:45:34 (6 months ago)
Author:
ar
Message:

#62 - rework the handle with QFileSystemWatcher.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/statusentriesmodel.cpp

    r973 r974  
    3737    m_statusEntries = svn::StatusEntries(); 
    3838    connect(&m_fsWatcher, SIGNAL(directoryChanged(const QString &)), 
    39              this, SLOT(onFsChanged(const QString &))); 
     39             this, SLOT(onFsChanged())); 
    4040} 
    4141 
     
    232232} 
    233233 
    234 void StatusEntriesModel::onFsChanged(const QString &path
     234void StatusEntriesModel::onFsChanged(
    235235{ 
    236236    m_existFsChanges = true; 
  • trunk/src/statusentriesmodel.h

    r973 r974  
    6565 
    6666    private slots: 
    67         void onFsChanged(const QString &path); 
     67        void onFsChanged(); 
    6868}; 
    6969