]> git.lyx.org Git - lyx.git/blobdiff - src/bufferview_funcs.C
Fix my breakage. Sorry guys.
[lyx.git] / src / bufferview_funcs.C
index c7c413fecf289233ca9847297ed89cb1b6f48efe..fb977c2dc56bdc1b2a6963b94ff415bf6b560a2a 100644 (file)
@@ -35,7 +35,7 @@
 
 #include "insets/insettext.h"
 
-#include "support/tostr.h"
+#include "support/convert.h"
 
 #include <sstream>
 
@@ -50,7 +50,7 @@ namespace bv_funcs {
 
 // Set data using font and toggle
 // If successful, returns true
-bool font2string(LyXFont const & font, bool toggle, string & data)
+bool font2string(LyXFont const & font, bool const toggle, string & data)
 {
        string lang = "ignore";
        if (font.language())
@@ -67,7 +67,7 @@ bool font2string(LyXFont const & font, bool toggle, string & data)
           << "number " << font.number() << '\n'
           << "color " << font.color() << '\n'
           << "language " << lang << '\n'
-          << "toggleall " << tostr(toggle);
+          << "toggleall " << convert<string>(toggle);
        data = os.str();
        return true;
 }
@@ -150,11 +150,11 @@ bool string2font(string const & data, LyXFont & font, bool & toggle)
 // the next two should probably go elsewhere
 // this give the position relative to (0, baseline) of outermost
 // paragraph
-Point coordOffset(DocIterator const & dit) 
+Point coordOffset(DocIterator const & dit)
 {
        int x = 0;
        int y = 0;
-       
+
        // Contribution of nested insets
        for (size_t i = 1; i != dit.size(); ++i) {
                CursorSlice const & sl = dit[i];
@@ -196,7 +196,7 @@ Point getPos(DocIterator const & dit)
 CurStatus status(BufferView const * bv, DocIterator const & dit)
 {
        CoordCache::InnerParPosCache & cache = theCoords.pars_[dit.bottom().text()];
-       
+
        if (cache.find(dit.bottom().pit()) != cache.end())
                return CUR_INSIDE;
        else if (dit.bottom().pit() < bv->anchor_ref())