| 45 | } |
| 46 | |
| 47 | bool Script::hasChanged() const |
| 48 | { |
| 49 | QFileInfo fi(m_Filename); |
| 50 | return (fi.size() != m_FileSize || fi.lastModified() != m_LastModified); |
| 51 | } |
| 52 | |
| 53 | bool Script::doParseHeader(const QString& beginComment, const QString& endComment, |
| 54 | const QString& Comment, bool skipEmpty /* = true */) |
no test coverage detected