mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 21:21:32 +00:00
Some small fixes to compile with DEC cxx
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@439 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
f111129035
commit
e0e62e94c4
@ -1,3 +1,10 @@
|
||||
2000-01-24 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
|
||||
|
||||
* src/kbmap.C (getsym): set return type to unsigned long, as
|
||||
declared in header. On an alpha, long is _not_ the same as int.
|
||||
|
||||
* src/support/LOstream.h: add a "using std::flush;"
|
||||
|
||||
2000-01-21 Lars Gullik Bjønnes <larsbj@lyx.org>
|
||||
|
||||
* src/bufferlist.C (write): use blinding fast file copy instead of
|
||||
|
@ -274,7 +274,7 @@ void kb_sequence::delseq()
|
||||
Returns : keysym
|
||||
\* ---F------------------------------------------------------------------- */
|
||||
|
||||
KeySym kb_sequence::getsym()
|
||||
unsigned long kb_sequence::getsym()
|
||||
{
|
||||
int l = length;
|
||||
if(l == 0) return NoSymbol;
|
||||
|
@ -21,5 +21,6 @@
|
||||
|
||||
using std::ostream;
|
||||
using std::endl;
|
||||
using std::flush;
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user