]> git.lyx.org Git - lyx.git/blobdiff - src/paragraph_funcs.C
ws changes only
[lyx.git] / src / paragraph_funcs.C
index af9feebf7d8ebd6c946fe3b9f7f17589b5ea2a97..91bca9935817ba83568024db2d3051a5a562e956 100644 (file)
 #include <config.h>
 
 #include "paragraph_funcs.h"
-#include "paragraph_pimpl.h"
+
 #include "buffer.h"
+#include "bufferparams.h"
+
 #include "debug.h"
+#include "encoding.h"
+#include "errorlist.h"
+#include "factory.h"
 #include "gettext.h"
 #include "iterators.h"
 #include "language.h"
-#include "encoding.h"
 #include "lyxlex.h"
-#include "factory.h"
-#include "Lsstream.h"
-
-#include "support/lstrings.h"
-#include "support/LAssert.h"
+#include "lyxrc.h"
+#include "paragraph_pimpl.h"
+#include "texrow.h"
+#include "vspace.h"
 
-#include "insets/insetoptarg.h"
 #include "insets/insetbibitem.h"
+#include "insets/insethfill.h"
+#include "insets/insetlatexaccent.h"
+#include "insets/insetnewline.h"
+#include "insets/insetoptarg.h"
 #include "insets/insetspace.h"
 #include "insets/insetspecialchar.h"
-#include "insets/insetlatexaccent.h"
 #include "insets/insettabular.h"
-#include "insets/insethfill.h"
-#include "insets/insetnewline.h"
-
-extern string bibitemWidest(Buffer const &);
 
-using namespace lyx::support;
+#include "support/lstrings.h"
+#include "support/std_sstream.h"
 
 using lyx::pos_type;
-//using lyx::layout_type;
+
+using lyx::support::bformat;
+using lyx::support::subst;
+
 using std::endl;
+using std::string;
+using std::istringstream;
 using std::ostream;
 
 
+extern string bibitemWidest(Buffer const &);
+
+
 namespace {
 
 bool moveItem(Paragraph & from, Paragraph & to,
@@ -345,7 +355,7 @@ TeXEnvironment(Buffer const & buf,
 {
        lyxerr[Debug::LATEX] << "TeXEnvironment...     " << &*pit << endl;
 
-       BufferParams const & bparams = buf.params;
+       BufferParams const & bparams = buf.params();
 
        LyXLayout_ptr const & style = pit->layout();
 
@@ -471,7 +481,7 @@ TeXOnePar(Buffer const & buf,
 {
        lyxerr[Debug::LATEX] << "TeXOnePar...     " << &*pit << " '"
                << everypar << "'" << endl;
-       BufferParams const & bparams = buf.params;
+       BufferParams const & bparams = buf.params();
 
        InsetOld const * in = pit->inInset();
        bool further_blank_line = false;
@@ -726,7 +736,7 @@ void latexParagraphs(Buffer const & buf,
 {
        bool was_title = false;
        bool already_title = false;
-       LyXTextClass const & tclass = buf.params.getLyXTextClass();
+       LyXTextClass const & tclass = buf.params().getLyXTextClass();
        ParagraphList::iterator par = const_cast<ParagraphList&>(paragraphs).begin();
        ParagraphList::iterator endpar = const_cast<ParagraphList&>(paragraphs).end();
 
@@ -807,7 +817,7 @@ int readParToken(Buffer & buf, Paragraph & par, LyXLex & lex, string const & tok
        static LyXFont font;
        static Change change;
 
-       BufferParams const & bp = buf.params;
+       BufferParams const & bp = buf.params();
 
        if (token[0] != '\\') {
                string::const_iterator cit = token.begin();
@@ -958,14 +968,14 @@ int readParToken(Buffer & buf, Paragraph & par, LyXLex & lex, string const & tok
                change = Change(Change::UNCHANGED);
        } else if (token == "\\change_inserted") {
                lex.nextToken();
-               istringstream is(STRCONV(lex.getString()));
+               istringstream is(lex.getString());
                int aid;
                lyx::time_type ct;
                is >> aid >> ct;
                change = Change(Change::INSERTED, bp.author_map[aid], ct);
        } else if (token == "\\change_deleted") {
                lex.nextToken();
-               istringstream is(STRCONV(lex.getString()));
+               istringstream is(lex.getString());
                int aid;
                lyx::time_type ct;
                is >> aid >> ct;
@@ -1063,8 +1073,8 @@ ParagraphList::iterator outerPar(Buffer const & buf, InsetOld const * inset)
                                return pit.outerPar();
        }
        lyxerr << "outerPar: should not happen" << endl;
-       Assert(false);
-       return const_cast<Buffer &>(buf).paragraphs.end(); // shut up compiler
+       BOOST_ASSERT(false);
+       return const_cast<Buffer &>(buf).paragraphs().end(); // shut up compiler
 }
 
 
@@ -1086,6 +1096,6 @@ Paragraph const & ownerPar(Buffer const & buf, InsetOld const * inset)
                                return *pit.pit();
        }
        lyxerr << "ownerPar: should not happen" << endl;
-       Assert(false);
-       return buf.paragraphs.front(); // shut up compiler
+       BOOST_ASSERT(false);
+       return buf.paragraphs().front(); // shut up compiler
 }