| 3117 | } |
| 3118 | |
| 3119 | QString strreverse(const QString& str) { // QString reversing |
| 3120 | auto ba = str.toLocal8Bit(); |
| 3121 | std::reverse(ba.begin(), ba.end()); |
| 3122 | |
| 3123 | return QLatin1String(ba); |
| 3124 | } |
| 3125 | |
| 3126 | Qt::PenStyle OriginProjectParser::penStyle(unsigned char lineStyle) const { |
| 3127 | switch (lineStyle) { |
no test coverage detected