Change GuiProgress identifier and description.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22077 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Abdelrazak Younes 2007-12-11 08:20:30 +00:00
parent 8a393b1f46
commit b2d28409fe
2 changed files with 4 additions and 4 deletions

View File

@ -25,9 +25,9 @@ namespace frontend {
GuiProgress::GuiProgress(GuiView & parent, Qt::DockWidgetArea area,
Qt::WindowFlags flags) : DockView(parent, "latex-progress", area, flags)
Qt::WindowFlags flags) : DockView(parent, "view-console", area, flags)
{
setWindowTitle(qt_("LaTeX Progress"));
setWindowTitle(qt_("External process monitoring"));
setWidget(&text_edit);
support::Systemcall::registerProgressInterface(this);
}

View File

@ -1574,7 +1574,7 @@ char const * const dialognames[] = {
"thesaurus",
#endif
"texinfo", "toc", "href", "view-source", "latex-progress", "vspace", "wrap", "listings" };
"texinfo", "toc", "href", "view-source", "view-console", "vspace", "wrap", "listings" };
char const * const * const end_dialognames =
dialognames + (sizeof(dialognames) / sizeof(char *));
@ -1853,7 +1853,7 @@ Dialog * GuiView::build(string const & name)
return createGuiLog(*this);
if (name == "view-source")
return createGuiViewSource(*this);
if (name == "latex-progress")
if (name == "view-console")
return createGuiProgress(*this);
if (name == "mathdelimiter")
return createGuiDelimiter(*this);