mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-11 22:03:01 -06:00
Broken GCC compilation #795
git-svn-id: svn://ultimatepp.org/upp/trunk@7463 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
20302ad480
commit
d4f49521f3
3 changed files with 3 additions and 3 deletions
|
|
@ -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));
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1063,7 +1063,7 @@ public:
|
|||
void SetupEditor(int font, String highlight, String fn);
|
||||
void SetupEditor();
|
||||
|
||||
void Display();
|
||||
void DoDisplay();
|
||||
|
||||
void SetIcon();
|
||||
bool IsCppBaseFile();
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue