TheIDE got new code-browser

git-svn-id: svn://ultimatepp.org/upp/trunk@511 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2008-10-06 20:41:14 +00:00
parent 1b9b782255
commit 4c97cf1fed
33 changed files with 704 additions and 466 deletions

View file

@ -167,9 +167,9 @@ bool IdeConsoleWait()
return the_ide && the_ide->IdeConsoleWait();
}
void IdeGotoLink(String s)
void IdeGotoCodeRef(String s)
{
if(the_ide) the_ide->IdeGotoLink(s);
if(the_ide) the_ide->IdeGotoCodeRef(s);
}
void IdeSetBottom(Ctrl& ctrl)

View file

@ -65,7 +65,7 @@ public:
virtual bool IdeDebugUnLock() = 0;
virtual bool IdeIsDebugLock() const = 0;
virtual void IdeSetBar() = 0;
virtual void IdeGotoLink(String link) = 0;
virtual void IdeGotoCodeRef(String link) = 0;
virtual ~IdeContext() {}
};
@ -89,7 +89,7 @@ void IdeConsoleFlush();
void IdeConsoleBeginGroup(String group);
void IdeConsoleEndGroup();
bool IdeConsoleWait();
void IdeGotoLink(String s);
void IdeGotoCodeRef(String s);
bool IdeIsDebug();
void IdeEndDebug();