]> git.lyx.org Git - lyx.git/blobdiff - src/Author.cpp
ui glitch
[lyx.git] / src / Author.cpp
index 91974b9c2efadabdab16e69ba067eccd32719479..08349265009da4d6124626b13e1dede3310f1a70 100644 (file)
@@ -26,7 +26,7 @@ namespace lyx {
 static int computeHash(docstring const & name,
        docstring const & email)
 {
-       string const full_author_string = to_ascii(name + email);
+       string const full_author_string = to_utf8(name + email);
        // Bernstein's hash function
        unsigned int hash = 5381;
        for (unsigned int i = 0; i < full_author_string.length(); ++i)