use explict cast to char

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1176 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 2000-10-31 00:34:21 +00:00
parent 235f7c1d2a
commit 9c6eea2ba5
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2000-10-31 Lars Gullik Bjønnes <larsbj@lyx.org>
* src/trans.C (AddDeadkey): cast explicitly to char.
2000-10-30 Lars Gullik Bjønnes <larsbj@lyx.org>
* src/tabular.C (AsciiBottomHLine): simplify?

View File

@ -172,8 +172,8 @@ void Trans::AddDeadkey(tex_accent accent, string const & keys,
// to change bindings, without unbinding first?"
// Lgb
lyxerr << "Hey... keymap_[xx] not empty." << endl;
temp.push_back(0);
temp.push_back(accent);
temp.push_back(char(0));
temp.push_back(char(accent));
}
#endif
}