| 52 | } |
| 53 | |
| 54 | QString UserScriptModel::getScriptFileName(int indexRow) const |
| 55 | { |
| 56 | if (indexRow < 0 || indexRow >= rowCount()) |
| 57 | return QString(); |
| 58 | |
| 59 | return m_scripts.at(indexRow).m_fileName; |
| 60 | } |
| 61 | |
| 62 | QString UserScriptModel::getScriptSource(int indexRow) |
| 63 | { |
no outgoing calls
no test coverage detected