]> git.lyx.org Git - lyx.git/commitdiff
fix some BoostFormat mistakes, cast the 0u par to string::isnert
authorLars Gullik Bjønnes <larsbj@gullik.org>
Mon, 2 Dec 2002 09:59:43 +0000 (09:59 +0000)
committerLars Gullik Bjønnes <larsbj@gullik.org>
Mon, 2 Dec 2002 09:59:43 +0000 (09:59 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5760 a592a061-630c-0410-9148-cb99ea01b6c8

src/ChangeLog
src/CutAndPaste.C
src/frontends/controllers/ChangeLog
src/frontends/controllers/ControlDocument.C
src/insets/insetquotes.C
src/text2.C

index 37e9d51dfa304c3d2caa74b778ce20c5201c3b40..a135964a78497b120821e235771a50686660f994 100644 (file)
@@ -1,3 +1,7 @@
+2002-12-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
+
+       * text2.C, CutAndPaste.C: use BoostFormat.h not boost/format.hpp
+
 2002-12-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
 
        * several files: ws changes
index 430927e37e7dcdb7ad5af2ff13d00dea26ad9cae..5dca9f0cc40da14ca96b594d45ba840a40620103 100644 (file)
@@ -29,7 +29,7 @@
 
 #include "insets/inseterror.h"
 
-#include <boost/format.hpp>
+#include "BoostFormat.h"
 
 using std::pair;
 using lyx::pos_type;
index bde30a5305d76f3017aa39f9102e914e6c86c480..8665b2c666f24597f7cb1844f983b180afe8a668 100644 (file)
@@ -1,3 +1,7 @@
+2002-12-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
+
+       * ControlDocument.C: use BoostFormat.h instead of boost/format.hpp
+
 2002-12-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
 
        * several files: ws changes
index a8d5d90b14074e484a64976975766e43f98da912..d7d5fb659f2304deebcb4695c50b5a06fd821590 100644 (file)
@@ -35,7 +35,7 @@
 #include "support/lstrings.h"
 #include "support/filetools.h"
 
-#include <boost/format.hpp>
+#include "BoostFormat.h"
 
 using std::endl;
 
index df238512440ec1d79c49e39be3f3feb64719cad8..d3dec8129e62e68aa6a30499e297313597b99605 100644 (file)
@@ -178,7 +178,7 @@ string const InsetQuotes::dispString(Language const * loclang) const
                if (side_ == LeftQ)
                        disp += ' ';
                else
-                       disp.insert(0u, 1, ' ');
+                       disp.insert(string::size_type(0), 1, ' ');
        }
 
        return disp;
index dea60ba4481406e99e5cb6d56c6af4fc00356138..bc1f0d6af5b524e5a6443f9afafbdbbbaaabd012 100644 (file)
@@ -45,7 +45,7 @@
 #include "support/textutils.h"
 #include "support/lstrings.h"
 
-#include <boost/format.hpp>
+#include "BoostFormat.h"
 
 using std::vector;
 using std::copy;