]> git.lyx.org Git - features.git/commitdiff
Compilation fixlets
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Wed, 25 Oct 2000 16:29:59 +0000 (16:29 +0000)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Wed, 25 Oct 2000 16:29:59 +0000 (16:29 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1156 a592a061-630c-0410-9148-cb99ea01b6c8

ChangeLog
src/frontends/ButtonPolicies.h

index 4510eeb01cd8231cef617b0e85747c8a1ac260e6..77058807054f2bcfef718d063b8dbaa79cf6c971 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
index 047d680ec4cdd2d6fb71c39b047b7b99c11526ed..2cc39853afad54f478ed02a9b24477e25906d87e 100644 (file)
@@ -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;