Document Buffer::preview()

This commit is contained in:
Georg Baum 2014-11-17 22:07:38 +01:00
parent b69fed3610
commit f146bded7a
2 changed files with 3 additions and 1 deletions

View File

@ -4184,6 +4184,7 @@ Buffer::ExportStatus Buffer::preview(string const & format) const
return preview(format, update_unincluded);
}
Buffer::ExportStatus Buffer::preview(string const & format, bool includeall) const
{
MarkAsExporting exporting(this);

View File

@ -642,7 +642,8 @@ public:
///
ExportStatus doExport(std::string const & target, bool put_in_tempdir) const;
///
/// Export buffer to format \p format and open the result in a suitable viewer.
/// Note: This has nothing to do with preview of graphics or math formulas.
ExportStatus preview(std::string const & format) const;
private: