| 835 | } |
| 836 | |
| 837 | void MountSystem::startFileChangeNotifications() |
| 838 | { |
| 839 | for ( U32 i = 0; i < mMountList.size(); i++ ) |
| 840 | { |
| 841 | FileSystemChangeNotifier *notifier = mMountList[i].fileSystem->getChangeNotifier(); |
| 842 | |
| 843 | if ( notifier != NULL && !notifier->isNotifying() ) |
| 844 | notifier->startNotifier(); |
| 845 | } |
| 846 | } |
| 847 | |
| 848 | void MountSystem::stopFileChangeNotifications() |
| 849 | { |
no test coverage detected