remove unneeded conversions

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16370 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Georg Baum 2006-12-21 19:02:17 +00:00
parent 22ee485a26
commit ea2c007320
2 changed files with 6 additions and 6 deletions

View File

@ -112,8 +112,8 @@ docstring const printable_list(docstring const & invalid_chars)
for (; it != end; ++it) {
if (it != begin)
s += lyx::from_ascii(", ");
if (*it == lyx::char_type(' '))
s += ", ";
if (*it == ' ')
s += _("space");
else
s += *it;
@ -135,7 +135,7 @@ QValidator::State PathValidator::validate(QString & qtext, int &) const
return acceptable_if_empty_ ?
QValidator::Acceptable : QValidator::Intermediate;
docstring invalid_chars = lyx::from_ascii("#$%{}()[]\"^");
docstring invalid_chars = from_ascii("#$%{}()[]\"^");
if (!tex_allows_spaces_)
invalid_chars += ' ';

View File

@ -822,12 +822,12 @@ void LyXTextClass::readCounter(LyXLex & lexrc)
switch (static_cast<CounterTags>(le)) {
case CT_NAME:
lexrc.next();
name = lyx::from_ascii(lexrc.getString());
name = from_ascii(lexrc.getString());
break;
case CT_WITHIN:
lexrc.next();
within = lyx::from_ascii(lexrc.getString());
if (within == lyx::from_ascii("none"))
within = from_ascii(lexrc.getString());
if (within == "none")
within.erase();
break;
case CT_END: