* GuiAbout.cpp:

- unmask e-mail addresses in the credits pane.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_6_X@31935 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Spitzmüller 2009-11-10 14:45:02 +00:00
parent e3c11c0894
commit 27402a1559
2 changed files with 9 additions and 2 deletions

View File

@ -58,9 +58,14 @@ static QString credits()
line = ts.readLine();
if (line.startsWith("@b"))
out << "<b>" << line.mid(2) << "</b>";
else if (line.startsWith("@i"))
else if (line.startsWith("@i")) {
if (line.startsWith("@iE-mail")) {
// unmask email
line.replace(QString(" () "), QString("@"));
line.replace(QString(" ! "), QString("."));
}
out << "<i>" << line.mid(2) << "</i>";
else
} else
out << line;
out << "<br>";
} while (!line.isNull());

View File

@ -278,6 +278,8 @@ What's new
- Fix double blinking cursors in Graphics/Nomenclature dialogs (bug 3852).
- Fix display of e-mail addresses in the About LyX dialog.
* DOCUMENTATION AND LOCALIZATION