MCPcopy Create free account
hub / github.com/dail8859/NotepadNext / eolString

Method eolString

src/ScintillaNext.cpp:185–192  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

183}
184
185QByteArray ScintillaNext::eolString() const
186{
187 const int eol = eOLMode();
188
189 if (eol == SC_EOL_LF) return QByteArrayLiteral("\n");
190 else if (eol == SC_EOL_CRLF) return QByteArrayLiteral("\r\n");
191 else return QByteArrayLiteral("\r");
192}
193
194bool ScintillaNext::lineIsEmpty(int line)
195{

Callers 2

sortMethod · 0.80
MainWindowMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected