ws cleanup

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3804 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 2002-03-21 17:42:56 +00:00
parent 8283e978f8
commit 2b8ef58dc0
94 changed files with 525 additions and 553 deletions

View File

@ -1,5 +1,7 @@
2002-03-21 Lars Gullik Bjønnes <larsbj@birdstep.com>
* most files: ws cleanup
* Makefile.am: remove ld -r stuff
2002-03-20 Lars Gullik Bjønnes <larsbj@birdstep.com>
@ -1459,4 +1461,3 @@
2001-01-15 Dekel Tsur <dekelts@tau.ac.il>
* math_draw.C (Metrics): Use the correct GetString.

View File

@ -193,4 +193,3 @@ void InsetFormulaMacro::draw(BufferView * bv, LyXFont const & f,
yo_ = y;
par()->draw(pain, xo_, yo_);
}

View File

@ -54,5 +54,3 @@ void MathBraceInset::normalize(NormalStream & os) const
{
os << "[block " << cell(0) << ']';
}

View File

@ -72,4 +72,3 @@ void MathDiffInset::write(WriteStream &) const
{
lyxerr << "should not happen\n";
}

View File

@ -1,4 +1,3 @@
#include "math_diminset.h"
#include "Lsstream.h"
#include "textpainter.h"

View File

@ -58,5 +58,3 @@ void MathExFuncInset::write(WriteStream & os) const
{
os << '\\' << name_ << '{' << cell(0) << '}';
}

View File

@ -92,4 +92,3 @@ void MathExIntInset::write(WriteStream &) const
{
lyxerr << "should not happen" << endl;
}

View File

@ -1,4 +1,3 @@
// This file contains most of the magic that extracts "context
// information" from the unstructered layout-oriented stuff in an
// MathArray.
@ -799,4 +798,3 @@ void mathmlize(MathArray const & dat, MathMLStream & os)
os << ETag("mrow");
}
}

View File

@ -722,5 +722,3 @@ void MathHullInset::check() const
lyx::Assert(nonum_.size() == nrows());
lyx::Assert(label_.size() == nrows());
}

View File

@ -1,4 +1,3 @@
#include <config.h>
#include "math_iterator.h"

View File

@ -59,4 +59,3 @@ void MathKernInset::normalize(NormalStream & os) const
{
os << "[kern " << wid_.asLatexString() << "]";
}

View File

@ -77,4 +77,3 @@ void MathMacroArgument::substitute(MathMacro const & m)
it->nucleus()->handleFont(code_);
expanded_ = true;
}

View File

@ -182,4 +182,3 @@ bool MathNestInset::editing() const
{
return mathcursor && mathcursor->isInside(this);
}

View File

@ -92,5 +92,3 @@ bool operator<(MathCursorPos const & p, MathCursorPos const & q)
return p.idx_ < q.idx_;
return p.pos_ < q.pos_;
}

View File

@ -446,5 +446,3 @@ void MathScriptInset::octavize2(MathInset const * nuc, OctaveStream & os) const
if (hasUp() && up().data_.size())
os << "^(" << up().data_ << ')';
}

View File

@ -125,4 +125,3 @@ private:
};
#endif

View File

@ -82,5 +82,3 @@ void MathSpaceInset::write(WriteStream & os) const
if (space_ >= 0 && space_ < 6)
os << '\\' << latex_mathspace[space_] << ' ';
}

View File

@ -125,5 +125,3 @@ void MathStringInset::write(WriteStream & os) const
else
os << str_;
}

View File

@ -773,5 +773,3 @@ string convertDelimToLatexName(string const & name)
return name;
return "\\" + name + " ";
}

View File

@ -200,5 +200,3 @@ void MathSymbolInset::infoize(ostream & os) const
{
os << '\\' << name();
}