fix typos.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22030 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Spitzmüller 2007-12-09 11:40:59 +00:00
parent 2bdb10271c
commit 35e4198e47

View File

@ -51,7 +51,7 @@ int SystemcallPrivate::start(const std::string& cmd, bool waitForFinished)
ProgressInterface* progress = Systemcall::progress();
if (progress) {
progress->clearMessages();
progress->appendMessage(qt_("Starting LaTex with command "));
progress->appendMessage(qt_("Starting LaTeX with command "));
progress->appendMessage(cmd.c_str());
}
@ -89,7 +89,7 @@ void SystemcallPrivate::processStarted()
{
ProgressInterface* progress = Systemcall::progress();
if (progress) {
progress->appendMessage(qt_("LaTex started\n"));
progress->appendMessage(qt_("LaTeX started\n"));
}
}
@ -98,7 +98,7 @@ void SystemcallPrivate::processError(QProcess::ProcessError)
{
ProgressInterface* progress = Systemcall::progress();
if (progress) {
progress->appendMessage(qt_("LaTex error\n"));
progress->appendMessage(qt_("LaTeX error\n"));
}
}