]> git.lyx.org Git - lyx.git/blobdiff - src/lengthcommon.C
add config.h
[lyx.git] / src / lengthcommon.C
index 4bc050e5713338ddbe606a07b7bc56c7cbebed0f..dde8d54c169c5440bd11972b6683fa774217f08b 100644 (file)
@@ -16,6 +16,9 @@
 
 #include "gettext.h"
 
+
+namespace lyx {
+
 using std::string;
 
 // I am not sure if "mu" should be possible to select (Lgb)
@@ -34,7 +37,7 @@ char const * const unit_name_gui[] = {
        N_("sp"), N_("pt"), N_("bp"), N_("dd"), N_("mm"), N_("pc"),
        N_("cc"), N_("cm"), N_("in"), N_("ex"), N_("em"), N_("mu"),
        N_("Text Width %"), N_("Column Width %"), N_("Page Width %"), N_("Line Width %"),
-       N_("Text Height %"), N_("Page Height %") };
+       N_("Text Height %"), N_("Page Height %"), "" };
 
 LyXLength::UNIT unitFromString(string const & data)
 {
@@ -43,3 +46,6 @@ LyXLength::UNIT unitFromString(string const & data)
                ++i;
        return static_cast<LyXLength::UNIT>(i);
 }
+
+
+} // namespace lyx