| 43 | } |
| 44 | |
| 45 | static QColor ScintillaColorToQColor(int color) |
| 46 | { |
| 47 | int r = color & 0xFF; |
| 48 | int g = (color >> 8) & 0xFF; |
| 49 | int b = (color >> 16) & 0xFF; |
| 50 | |
| 51 | return QColor::fromRgb(r, g, b); |
| 52 | } |
| 53 | |
| 54 | void RtfConverter::convertRange(QTextStream &stream, int start, int end) |
| 55 | { |