* src/frontends/controllers/ControlSendto.cpp:

- add missing pdflatex format.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_5_X@22345 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Spitzmüller 2008-01-03 09:21:33 +00:00
parent bc45de19e6
commit 714e9270a5
2 changed files with 5 additions and 2 deletions

View File

@ -63,8 +63,10 @@ vector<Format const *> const ControlSendto::allFormats() const
Buffer const & buffer = kernel().buffer();
if (buffer.isLatex())
if (buffer.isLatex()) {
exports.push_back("latex");
exports.push_back("pdflatex");
}
else if (buffer.isDocBook())
exports.push_back("docbook");
else if (buffer.isLiterate())

View File

@ -53,7 +53,6 @@ What's new
these things are now also included in the Express edition.
** Bug fixes:
*************
@ -93,6 +92,8 @@ What's new
- Fix rows alignment in the gather environment (part of bug 1497).
- Add missing pdflatex format to Export->Custom.
* DOCUMENTATION