| 109 | } |
| 110 | |
| 111 | QVector<MethodArgument> MethodArgumentModel::arguments() const |
| 112 | { |
| 113 | QVector<MethodArgument> args(10); |
| 114 | for (int i = 0; i < rowCount(); ++i) |
| 115 | args[i] = MethodArgument(m_arguments.at(i)); |
| 116 | return args; |
| 117 | } |
no outgoing calls
no test coverage detected