Fix show of abbreviations in XDXF dictionaries (issue #116).

This commit is contained in:
Abs62 2012-07-23 20:55:26 +04:00
parent c79899f916
commit c8c284c694
2 changed files with 2 additions and 1 deletions

View file

@ -160,6 +160,7 @@ div.xdxf
{
font-style: italic;
color: green;
cursor: default;
}
/* Color-highlighted */

View file

@ -179,7 +179,7 @@ string convert( string const & in, DICT_TYPE type, map < string, string > const
}
else
title = i->second;
el.setAttribute( "title", title.c_str() );
el.setAttribute( "title", gd::toQString( Utf8::decode( title ) ) );
}
}
}