X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FLength.cpp;h=0deed7481c915f3e2e70b6f2f100c80d7d993d64;hb=11e679f73ecca718c61307973c3d67739354e1c7;hp=288a54de6230ec3661b3dc00d661d5a553db4765;hpb=306ebdf80b77570bfd87be39cf3c638b1bf92bfb;p=lyx.git diff --git a/src/Length.cpp b/src/Length.cpp index 288a54de62..0deed7481c 100644 --- a/src/Length.cpp +++ b/src/Length.cpp @@ -57,17 +57,11 @@ Length::Length(string const & data) } -void Length::swap(Length & rhs) -{ - std::swap(val_, rhs.val_); - std::swap(unit_, rhs.unit_); -} - - string const Length::asString() const { ostringstream os; - os << val_ << unit_name[unit_]; // setw? + if (unit_ != UNIT_NONE) + os << val_ << unit_name[unit_]; // setw? return os.str(); } @@ -75,7 +69,8 @@ string const Length::asString() const docstring const Length::asDocstring() const { odocstringstream os; - os << val_ << unit_name[unit_]; // setw? + if (unit_ != UNIT_NONE) + os << val_ << unit_name[unit_]; // setw? return os.str(); } @@ -102,6 +97,8 @@ string const Length::asLatexString() const case PPH: os << val_ / 100.0 << "\\paperheight"; break; + case UNIT_NONE: + break; default: os << val_ << unit_name[unit_]; break; @@ -320,20 +317,7 @@ int Length::inBP() const Length::UNIT Length::defaultUnit() { - // FIXME user a proper pref, since we should get rid of - // default_papersize in lyxrc. - UNIT u = Length::CM; - switch (lyxrc.default_papersize) { - case PAPER_USLETTER: - case PAPER_USLEGAL: - case PAPER_USEXECUTIVE: - u = Length::IN; - break; - default: - break; - } - - return u; + return lyxrc.default_length_unit; } @@ -376,6 +360,9 @@ GlueLength::GlueLength(string const & data) string const GlueLength::asString() const { + if (len_.empty()) + return string(); + ostringstream buffer; buffer << len_.value();