Broken GCC compilation #795

git-svn-id: svn://ultimatepp.org/upp/trunk@7463 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2014-06-23 18:47:38 +00:00
parent 20302ad480
commit d4f49521f3
3 changed files with 3 additions and 3 deletions

View file

@ -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));
}

View file

@ -1063,7 +1063,7 @@ public:
void SetupEditor(int font, String highlight, String fn);
void SetupEditor();
void Display();
void DoDisplay();
void SetIcon();
bool IsCppBaseFile();

View file

@ -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;