Index: CodeEditor/CodeEditor.h =================================================================== --- CodeEditor/CodeEditor.h (revision 59) +++ CodeEditor/CodeEditor.h (working copy) @@ -27,7 +27,6 @@ LineInfoRecord() { error = 0; edited = 0; } }; - typedef Array LineInfo; struct LineInfoRemRecord : Moveable { @@ -93,7 +92,6 @@ void SetBreakpoint(int ln, const String& s); void SetEdited(int ln, int count = 1); void ClearEdited(); - void ClearMarkers(int ln = -1, int count = 1); void SetError(int ln, int err); void ClearErrors(int ln); Index: ide/FindInFiles.cpp =================================================================== --- ide/FindInFiles.cpp (revision 59) +++ ide/FindInFiles.cpp (working copy) @@ -337,6 +337,7 @@ console << Format("%d occurrence(s) have been found.\n", n); } } + SetErrorEditor(); } void Ide::FindString(bool back) Index: ide/idebar.cpp =================================================================== --- ide/idebar.cpp (revision 59) +++ ide/idebar.cpp (working copy) @@ -131,7 +131,6 @@ (menu.*add)("Paste", CtrlImg::paste(), THISBACK(EditPaste)) .Key(K_CTRL_V) .Help("Insert text from clipboard at cursor location"); - menu.MenuSeparator(); menu.Add(AK_SPACESTOTABS, THISBACK(EditMakeTabs)) Index: ide/idefile.cpp =================================================================== --- ide/idefile.cpp (revision 59) +++ ide/idefile.cpp (working copy) @@ -415,6 +415,7 @@ editor.SetCharset(charset); MakeTitle(); SetBar(); + editor.CheckEdited(true); return; } fd.undodata.Clear();