* src/frontends/qt3/QLPopupMenu.C

(QLPopupMenu::populate): Don't append a lyx::char_type to a qstring


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14988 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Georg Baum 2006-09-13 16:36:56 +00:00
parent ea52fa17a6
commit 37f22e93a2

View File

@ -145,7 +145,7 @@ void QLPopupMenu::populate(Menu * menu)
#else
docstring const binding(m->binding());
if (!binding.empty()) {
label += char_type('\t') + toqstr(binding);
label += '\t' + toqstr(binding);
}
#endif