mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-08-10 16:51:19 +03:00
eepp:
Added Window::showMessageBox. ecode: Closes SpartanJ/ecode#93 (ecode does not properly warn the user of the lack of GPU acceleration). Minor refactor.
This commit is contained in:
@@ -233,7 +233,7 @@ void LSPDocumentClient::processTokens( const LSPSemanticTokensDelta& tokens ) {
|
||||
mRunningSemanticTokens = false;
|
||||
}
|
||||
|
||||
void LSPDocumentClient::onDocumentMoveHighlight( const Int64& fromLine, const Int64& numLines ) {
|
||||
void LSPDocumentClient::onDocumentLineMove( const Int64& fromLine, const Int64& numLines ) {
|
||||
Int64 linesCount = mDoc->linesCount();
|
||||
if ( numLines > 0 ) {
|
||||
for ( Int64 i = linesCount - 1; i >= fromLine; --i ) {
|
||||
|
||||
@@ -37,7 +37,7 @@ class LSPDocumentClient : public TextDocument::Client {
|
||||
virtual void onDocumentDirtyOnFileSystem( TextDocument* );
|
||||
virtual void onDocumentMoved( TextDocument* );
|
||||
virtual void onDocumentReloaded( TextDocument* );
|
||||
virtual void onDocumentMoveHighlight( const Int64& fromLine, const Int64& numLines );
|
||||
virtual void onDocumentLineMove( const Int64& fromLine, const Int64& numLines );
|
||||
|
||||
void notifyOpen();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user