mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 05:16:21 +00:00
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:
parent
235f7c1d2a
commit
9c6eea2ba5
@ -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?
|
||||
|
@ -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
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user