diff --git a/PowerEditor/src/ScitillaComponent/ScintillaEditView.cpp b/PowerEditor/src/ScitillaComponent/ScintillaEditView.cpp index 86a9cf624..dcfe800f8 100644 --- a/PowerEditor/src/ScitillaComponent/ScintillaEditView.cpp +++ b/PowerEditor/src/ScitillaComponent/ScintillaEditView.cpp @@ -1922,17 +1922,6 @@ void ScintillaEditView::getLine(int lineNumber, TCHAR * line, int lineBufferLen) delete [] lineA; } -generic_string ScintillaEditView::getLine(int lineNumber) -{ - int lineLen = execute(SCI_LINELENGTH, lineNumber); - const int bufSize = 1 + lineLen; - _TCHAR *buf = new _TCHAR[bufSize]; - getLine(lineNumber, buf, bufSize); - generic_string text = buf; - delete[] buf; - return text; -} - void ScintillaEditView::addText(int length, const char *buf) { execute(SCI_ADDTEXT, length, (LPARAM)buf); diff --git a/PowerEditor/src/ScitillaComponent/ScintillaEditView.h b/PowerEditor/src/ScitillaComponent/ScintillaEditView.h index 0c774eb1c..0dcf90aeb 100644 --- a/PowerEditor/src/ScitillaComponent/ScintillaEditView.h +++ b/PowerEditor/src/ScitillaComponent/ScintillaEditView.h @@ -271,7 +271,6 @@ public: void showAutoComletion(int lenEntered, const TCHAR * list); void showCallTip(int startPos, const TCHAR * def); void getLine(int lineNumber, TCHAR * line, int lineBufferLen); - generic_string getLine(int lineNumber); void addText(int length, const char *buf); void insertNewLineAboveCurrentLine();