| 115 | } |
| 116 | |
| 117 | RichString SharedStrings::getSharedString(int index) const |
| 118 | { |
| 119 | if (index < m_stringList.count() && index >= 0) |
| 120 | return m_stringList[index]; |
| 121 | return RichString(); |
| 122 | } |
| 123 | |
| 124 | QList<RichString> SharedStrings::getSharedStrings() const |
| 125 | { |
no test coverage detected