]> git.lyx.org Git - lyx.git/blobdiff - src/Messages.cpp
* src/frontends/controllers/Dialog.{cpp,h}:
[lyx.git] / src / Messages.cpp
index 5fbd3ccbb22a18bd83f66cc4280400062fa2e6be..cbead2110636f7877040124c425bdfa664735e5d 100644 (file)
@@ -16,7 +16,7 @@
 #include "support/docstring.h"
 #include "support/environment.h"
 #include "support/filetools.h"
-#include "support/package.h"
+#include "support/Package.h"
 #include "support/unicode.h"
 
 #include <boost/current_function.hpp>
@@ -82,7 +82,7 @@ docstring const Messages::get(string const & m) const
                return it->second;
        // The string was not found, use gettext to generate it:
 
-       // In this order, see support/filetools.C:
+       // In this order, see support/filetools.cpp:
        string lang = getEnv("LC_ALL");
        if (lang.empty()) {
                lang = getEnv("LC_MESSAGES");
@@ -166,7 +166,7 @@ docstring const Messages::get(string const & m) const
 #endif
        setlocale(LC_CTYPE, oldCTYPE.c_str());
 
-       std::pair<TranslationCache::iterator, bool> result = 
+       std::pair<TranslationCache::iterator, bool> result =
                cache_.insert(std::make_pair(m, translated));
 
        BOOST_ASSERT(result.second);