mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Fix up 0cf394dd
This commit is contained in:
parent
71f532db4b
commit
8ae652eb16
@ -947,11 +947,9 @@ string InsetGraphics::prepareHTMLFile(OutputParams const & runparams) const
|
|||||||
|
|
||||||
docstring InsetGraphics::xhtml(XHTMLStream & xs, OutputParams const & op) const
|
docstring InsetGraphics::xhtml(XHTMLStream & xs, OutputParams const & op) const
|
||||||
{
|
{
|
||||||
string const output_file;
|
string const output_file = op.dryrun ? string() : prepareHTMLFile(op);
|
||||||
if (!op.dryrun)
|
|
||||||
prepareHTMLFile(op);
|
|
||||||
|
|
||||||
if (output_file.empty()) {
|
if (output_file.empty() && !op.dryrun) {
|
||||||
LYXERR0("InsetGraphics::xhtml: Unable to prepare file `"
|
LYXERR0("InsetGraphics::xhtml: Unable to prepare file `"
|
||||||
<< params().filename << "' for output. File missing?");
|
<< params().filename << "' for output. File missing?");
|
||||||
string const attr = "src='" + params().filename.absFileName()
|
string const attr = "src='" + params().filename.absFileName()
|
||||||
|
Loading…
Reference in New Issue
Block a user