]> git.lyx.org Git - lyx.git/blobdiff - src/insets/ExternalTransforms.cpp
This should be the last of the commits refactoring the InsetLayout code.
[lyx.git] / src / insets / ExternalTransforms.cpp
index 2ca1fceda3c50be6365d50e83a0d88a863358639..76404738c10081e60a8557278aa3fbbce4c10e66 100644 (file)
@@ -13,7 +13,6 @@
 #include "ExternalTransforms.h"
 
 #include "support/debug.h"
-
 #include "support/lstrings.h"
 #include "support/lyxlib.h" // float_equal
 #include "support/convert.h"
@@ -317,7 +316,7 @@ string const sanitizeLatexOption(string const & input)
        output = what.str(1);
 
        // Remove any surrounding whitespace
-       output = support::trim(output);
+       output = trim(output);
 
        // If the thing is empty, leave it so, else wrap it in square brackets.
        return output.empty() ? output : "[" + output + "]";