mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-21 23:09:40 +00:00
Compilation fixlets
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1156 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
239a2e8928
commit
9e13a93730
@ -1,3 +1,8 @@
|
||||
2000-10-25 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
|
||||
|
||||
* src/frontends/ButtonPolicies.h: include "support/LOstream.h" and
|
||||
add the usual std:: qualifiers.
|
||||
|
||||
2000-10-25 Juergen Vigna <jug@sad.it>
|
||||
|
||||
* src/screen.C (ShowManualCursor): fixed another uint -> int problem.
|
||||
|
@ -22,7 +22,7 @@
|
||||
|
||||
#include <vector>
|
||||
#include <boost/utility.hpp>
|
||||
|
||||
#include "support/LOstream.h"
|
||||
|
||||
/** An abstract base class for button policies.
|
||||
A state machine implementation of the various button policies used by the
|
||||
@ -160,14 +160,14 @@ public:
|
||||
|
||||
|
||||
inline
|
||||
ostream & operator<<(ostream & os, ButtonPolicy::SMInput smi)
|
||||
std::ostream & operator<<(std::ostream & os, ButtonPolicy::SMInput smi)
|
||||
{
|
||||
os << int(smi);
|
||||
return os;
|
||||
}
|
||||
|
||||
inline
|
||||
ostream & operator<<(ostream & os, ButtonPolicy::State st)
|
||||
std::ostream & operator<<(std::ostream & os, ButtonPolicy::State st)
|
||||
{
|
||||
os << int(st);
|
||||
return os;
|
||||
|
Loading…
x
Reference in New Issue
Block a user