diff --git a/uppsrc/ide/ide.cpp b/uppsrc/ide/ide.cpp index f9cd6f588..7ee3faf1d 100644 --- a/uppsrc/ide/ide.cpp +++ b/uppsrc/ide/ide.cpp @@ -465,7 +465,7 @@ void Ide::BookKey(int key) { Key(key, 1); } -void Ide::Display() { +void Ide::DoDisplay() { Point p = editor.GetColumnLine(editor.GetCursor()); display.SetLabel(Format("Ln %d, Col %d", p.y + 1, p.x + 1)); } diff --git a/uppsrc/ide/ide.h b/uppsrc/ide/ide.h index 23fac3292..73b61035f 100644 --- a/uppsrc/ide/ide.h +++ b/uppsrc/ide/ide.h @@ -1063,7 +1063,7 @@ public: void SetupEditor(int font, String highlight, String fn); void SetupEditor(); - void Display(); + void DoDisplay(); void SetIcon(); bool IsCppBaseFile(); diff --git a/uppsrc/ide/idewin.cpp b/uppsrc/ide/idewin.cpp index 6e6ffff5d..638555ba7 100644 --- a/uppsrc/ide/idewin.cpp +++ b/uppsrc/ide/idewin.cpp @@ -486,7 +486,7 @@ Ide::Ide() console.WhenSelect = THISBACK(FindError); console.SetSlots(hydra1_threads); - editor.WhenSelection = THISBACK(Display); + editor.WhenSelection = THISBACK(DoDisplay); stoponerrors = true; hilite_scope = 1; hilite_bracket = 1;