Changeset 3832
- Timestamp:
- 04/21/09 10:14:22 (11 months ago)
- Location:
- pcbsd
- Files:
-
- 2 modified
-
trunk-current/SystemUpdaterTray/UpdaterTray.cpp (modified) (2 diffs)
-
trunk/SystemUpdaterTray/UpdaterTray.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pcbsd/trunk-current/SystemUpdaterTray/UpdaterTray.cpp
r3736 r3832 115 115 QTimer::singleShot(1000, this, SLOT(slotScheduledPBICheck())); 116 116 117 // Watch our trigger file to see if the list of installed PBIs changes 117 118 fileWatcher = KDirWatch::self(); 118 119 fileWatcher->addFile("/Programs/.config/ProgList"); … … 120 121 connect(fileWatcher, SIGNAL(dirty(const QString&)), this, SLOT(slotScheduledPBICheck() )); 121 122 123 // Watch our trigger file, to see if any updates have been changed 124 fileWatcher = KDirWatch::self(); 125 fileWatcher->addFile("/PCBSD/SystemUpdater/conf/.last-update"); 126 127 connect(fileWatcher, SIGNAL(dirty(const QString&)), this, SLOT(slotScheduledSystemCheck() )); 122 128 123 129 } -
pcbsd/trunk/SystemUpdaterTray/UpdaterTray.cpp
r3736 r3832 115 115 QTimer::singleShot(1000, this, SLOT(slotScheduledPBICheck())); 116 116 117 // Watch our trigger file to see if the list of installed PBIs changes 117 118 fileWatcher = KDirWatch::self(); 118 119 fileWatcher->addFile("/Programs/.config/ProgList"); … … 120 121 connect(fileWatcher, SIGNAL(dirty(const QString&)), this, SLOT(slotScheduledPBICheck() )); 121 122 123 // Watch our trigger file, to see if any updates have been changed 124 fileWatcher = KDirWatch::self(); 125 fileWatcher->addFile("/PCBSD/SystemUpdater/conf/.last-update"); 126 127 connect(fileWatcher, SIGNAL(dirty(const QString&)), this, SLOT(slotScheduledSystemCheck() )); 122 128 123 129 }
