! * Returns the list of warnings that occured during the last parse step. */
| 138 | * Returns the list of warnings that occured during the last parse step. |
| 139 | */ |
| 140 | QStringList AbstractFileFilter::lastWarnings() const { |
| 141 | return m_lastWarnings; |
| 142 | } |
| 143 | |
| 144 | void AbstractFileFilter::addWarning(const QString& warning) { |
| 145 | m_lastWarnings << warning; |