ide: Assist/Annotations now updated when writing the code

git-svn-id: svn://ultimatepp.org/upp/trunk@7690 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2014-09-15 11:23:36 +00:00
parent 1e89c9f533
commit 4c216ffdf5
9 changed files with 39 additions and 1 deletions

View file

@ -91,6 +91,7 @@ void CodeEditor::PostInsert(int pos, const WString& text) {
Refresh();
else
CheckSyntaxRefresh(pos, text);
WhenUpdate();
}
void CodeEditor::PreRemove(int pos, int size) {
@ -109,6 +110,7 @@ void CodeEditor::PreRemove(int pos, int size) {
void CodeEditor::PostRemove(int pos, int size) {
if(check_edited)
bar.SetEdited(GetLine(pos));
WhenUpdate();
}
void CodeEditor::ClearLines() {