Changeset 974
- Timestamp:
- 07/24/08 19:45:34 (6 months ago)
- Files:
-
- trunk/src/statusentriesmodel.cpp (modified) (2 diffs)
- trunk/src/statusentriesmodel.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/statusentriesmodel.cpp
r973 r974 37 37 m_statusEntries = svn::StatusEntries(); 38 38 connect(&m_fsWatcher, SIGNAL(directoryChanged(const QString &)), 39 this, SLOT(onFsChanged( const QString &)));39 this, SLOT(onFsChanged())); 40 40 } 41 41 … … 232 232 } 233 233 234 void StatusEntriesModel::onFsChanged( const QString &path)234 void StatusEntriesModel::onFsChanged() 235 235 { 236 236 m_existFsChanges = true; trunk/src/statusentriesmodel.h
r973 r974 65 65 66 66 private slots: 67 void onFsChanged( const QString &path);67 void onFsChanged(); 68 68 }; 69 69
