]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/controllers/ControlChanges.C
convert author names and status messages to docstring
[lyx.git] / src / frontends / controllers / ControlChanges.C
index 5c309caa7b0c3257aac760766d94466761a999a7..9c67cc57c50cfec7a713526fe254f5e9d6421c96 100644 (file)
@@ -65,12 +65,11 @@ docstring const ControlChanges::getChangeAuthor()
 
        Author const & a(kernel().buffer().params().authors().get(c.author));
 
-       // FIXME UNICODE in Author class
-       docstring author(from_utf8(a.name()));
+       docstring author(a.name());
 
        if (!a.email().empty()) {
                author += " (";
-               author += from_utf8(a.email());
+               author += a.email();
                author += ")";
        }