]> git.lyx.org Git - features.git/blobdiff - src/callback.cpp
Whitespace cleanup
[features.git] / src / callback.cpp
index 05a89db2459027919a5ce318659a087b2f30e521..3f6701a017b6fd8a96f03558cce0284767773796 100644 (file)
@@ -401,7 +401,7 @@ docstring const getContentsOfPlaintextFile(BufferView * bv, string const & f,
        // FIXME UNICODE: We don't know the encoding of the file
        docstring file_content = from_utf8(tmpstr);
        if (file_content.empty()) {
-               Alert::error(_("Reading not UTF-8 encoded file"), 
+               Alert::error(_("Reading not UTF-8 encoded file"),
                                        _("The file is not UTF-8 encoded.\n"
                                        "It will be read as local 8Bit-encoded.\n"
                                        "If this does not give the correct result\n"
@@ -409,7 +409,7 @@ docstring const getContentsOfPlaintextFile(BufferView * bv, string const & f,
                                        "to UTF-8 with a program other than LyX.\n"));
                file_content = from_local8bit(tmpstr);
        }
-       
+
        return normalize_kc(file_content);
 }