| 152 | } |
| 153 | |
| 154 | int ScintillaNext::stringToEolMode(QString eolMode) |
| 155 | { |
| 156 | if (eolMode == QStringLiteral("crlf")) |
| 157 | return SC_EOL_CRLF; |
| 158 | else if (eolMode == QStringLiteral("cr")) |
| 159 | return SC_EOL_CR; |
| 160 | else if (eolMode == QStringLiteral("lf")) |
| 161 | return SC_EOL_LF; |
| 162 | else |
| 163 | return -1; |
| 164 | } |
| 165 | |
| 166 | int ScintillaNext::allocateIndicator(const QString &name) |
| 167 | { |
nothing calls this directly
no outgoing calls
no test coverage detected