| 382 | } |
| 383 | |
| 384 | void IDE::fileModified(const QString &f) |
| 385 | { |
| 386 | modifiedFiles.insert(f); |
| 387 | if (activeWindow()!=nullptr) { |
| 388 | modifiedTimer.setSingleShot(true); |
| 389 | modifiedTimer.start(3000); |
| 390 | } |
| 391 | } |
| 392 | |
| 393 | void IDE::addRecentProject(const QString& p) { |
| 394 | if (p != "") { |