]> git.lyx.org Git - lyx.git/blobdiff - src/Length.cpp
InsetInfo: Output 'undefined' instead of an error message for undefined shortcut
[lyx.git] / src / Length.cpp
index 4f00562d8608759ff36b276c479f2cc5e9349633..90da83a74ca7080a9fbc2b75762ce761f13501f0 100644 (file)
@@ -16,8 +16,6 @@
 #include <config.h>
 
 #include "Length.h"
-
-#include "gettext.h"
 #include "LyXRC.h"
 
 #include "support/docstream.h"
 #include <sstream>
 #include <iomanip>
 
+using namespace std;
 
 namespace lyx {
 
-using std::ostringstream;
-using std::string;
-
-// FIXME: I am not sure if "mu" should be possible to select (Lgb)
-char const * const unit_name[] = {
-       "sp", "pt", "bp", "dd", "mm", "pc",
-       "cc", "cm", "in", "ex", "em", "mu",
-       "text%",  "col%", "page%", "line%",
-       "theight%", "pheight%", "" };
-
-
-int const num_units = int(sizeof(unit_name) / sizeof(unit_name[0]) - 1);
-
-
-char const * const unit_name_gui[] = {
-       N_("sp"), N_("pt"), N_("bp"), N_("dd"), N_("mm"), N_("pc"),
-       N_("cc[[unit of measure]]"), 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 %"), "" };
-
-
-Length::UNIT unitFromString(string const & data)
-{
-       int i = 0;
-       while (i < num_units && data != unit_name[i])
-               ++i;
-       return static_cast<Length::UNIT>(i);
-}
-
 
 /////////////////////////////////////////////////////////////////////
 //