]> git.lyx.org Git - lyx.git/commitdiff
* src/insets/InsetGraphics.cpp (prepareFile):
authorJürgen Spitzmüller <spitz@lyx.org>
Sun, 30 Sep 2007 12:38:08 +0000 (12:38 +0000)
committerJürgen Spitzmüller <spitz@lyx.org>
Sun, 30 Sep 2007 12:38:08 +0000 (12:38 +0000)
- Fix wrong external_path that triggered an assert on Windows
  while exporting to LaTeX (bug 4243).

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20607 a592a061-630c-0410-9148-cb99ea01b6c8

src/insets/InsetGraphics.cpp

index 4f58f76ac3ce8d99f7d197c3809b22ca558e52da..cff5a843ea8d01f74c538c81db49a62397b06286 100644 (file)
@@ -627,13 +627,12 @@ string const InsetGraphics::prepareFile(Buffer const & buf,
        if (status == FAILURE)
                return orig_file;
 
-       // a relative filename should be relative to the master
-       // buffer.
+       // a relative filename should be relative to the master buffer.
        // "nice" means that the buffer is exported to LaTeX format but not
-       //        run through the LaTeX compiler.
-       string output_file = support::os::external_path(runparams.nice ?
+       // run through the LaTeX compiler.
+       string output_file = runparams.nice ?
                params().filename.outputFilename(m_buffer->filePath()) :
-               onlyFilename(temp_file.absFilename()));
+               onlyFilename(temp_file.absFilename());
 
        if (runparams.nice && !isValidLaTeXFilename(output_file)) {
                frontend::Alert::warning(_("Invalid filename"),