]> git.lyx.org Git - lyx.git/blobdiff - src/sgml.C
Get rid of FileInfo::getNumberofLinks().
[lyx.git] / src / sgml.C
index 412fb8f127f601dc08957a760bf77cb8f09345ba..9d159f4d7a32981ef4fca6601b0c522275a9ea4e 100644 (file)
@@ -153,8 +153,8 @@ string cleanID(Buffer const & buf, OutputParams const & runparams, std::string c
        // make sure it starts with a letter
        if (!isalpha(*it) && allowed.find(*it) >= allowed.size())
                content += "x";
-       
-       bool mangle = false;    
+
+       bool mangle = false;
        for (; it != end; ++it) {
                char c = *it;
                if (isalpha(c) || isdigit(c) || c == '-' || c == '.' || allowed.find(c) < allowed.size())