]> git.lyx.org Git - lyx.git/blobdiff - src/insets/ExternalSupport.cpp
Cleanup mouse/selection/context-menu interactions.
[lyx.git] / src / insets / ExternalSupport.cpp
index 075313667e8ed1c1d12604d8b1950b981a4801ad..0d2615883bd745cf42fe2d99a4a66d58586040f8 100644 (file)
@@ -30,7 +30,6 @@
 #include "support/gettext.h"
 #include "support/lstrings.h"
 #include "support/lyxalgo.h"
-#include "support/lyxlib.h"
 #include "support/os.h"
 #include "support/Package.h"
 
@@ -51,7 +50,7 @@ Template const * getTemplatePtr(InsetExternalParams const & params)
 
 void editExternal(InsetExternalParams const & params, Buffer const & buffer)
 {
-       formats.edit(buffer, params.filename,
+       formats.edit(buffer, params.filename.availableFile(),
                     formats.getFormatFromFile(params.filename));
 }
 
@@ -131,7 +130,7 @@ string const doSubstitution(InsetExternalParams const & params,
                                    relToParentPath, use_latex_path,
                                    PROTECT_EXTENSION,
                                    ESCAPE_DOTS);
-               if (absolutePath(filename)) {
+               if (FileName(filename).isAbsolute()) {
                        result = subst_path(result, "$$AbsOrRelPathMaster",
                                            abspath, use_latex_path,
                                            PROTECT_EXTENSION,
@@ -255,7 +254,7 @@ void updateExternal(InsetExternalParams const & params,
 
                if (from_checksum != temp_checksum) {
                        Mover const & mover = getMover(from_format);
-                       if (!mover.copy(params.filename, temp_file)) {
+                       if (!mover.copy(params.filename.availableFile(), temp_file)) {
                                LYXERR(Debug::EXTERNAL, "external::updateExternal. "
                                        << "Unable to copy " << params.filename << " to " << temp_file);
                                return; // FAILURE
@@ -311,7 +310,7 @@ void updateExternal(InsetExternalParams const & params,
        ErrorList el;
        bool const success =
                theConverters().convert(&buffer, temp_file, abs_to_file,
-                                  params.filename, from_format, to_format, el,
+                                  params.filename.availableFile(), from_format, to_format, el,
                                   Converters::try_default | Converters::try_cache);
 
        if (!success) {