mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-07 17:55:30 +00:00
ws cleanup
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3804 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
8283e978f8
commit
2b8ef58dc0
@ -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.
|
||||
|
||||
|
@ -193,4 +193,3 @@ void InsetFormulaMacro::draw(BufferView * bv, LyXFont const & f,
|
||||
yo_ = y;
|
||||
par()->draw(pain, xo_, yo_);
|
||||
}
|
||||
|
||||
|
@ -54,5 +54,3 @@ void MathBraceInset::normalize(NormalStream & os) const
|
||||
{
|
||||
os << "[block " << cell(0) << ']';
|
||||
}
|
||||
|
||||
|
||||
|
@ -72,4 +72,3 @@ void MathDiffInset::write(WriteStream &) const
|
||||
{
|
||||
lyxerr << "should not happen\n";
|
||||
}
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
|
||||
#include "math_diminset.h"
|
||||
#include "Lsstream.h"
|
||||
#include "textpainter.h"
|
||||
|
@ -58,5 +58,3 @@ void MathExFuncInset::write(WriteStream & os) const
|
||||
{
|
||||
os << '\\' << name_ << '{' << cell(0) << '}';
|
||||
}
|
||||
|
||||
|
||||
|
@ -92,4 +92,3 @@ void MathExIntInset::write(WriteStream &) const
|
||||
{
|
||||
lyxerr << "should not happen" << endl;
|
||||
}
|
||||
|
||||
|
@ -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");
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -722,5 +722,3 @@ void MathHullInset::check() const
|
||||
lyx::Assert(nonum_.size() == nrows());
|
||||
lyx::Assert(label_.size() == nrows());
|
||||
}
|
||||
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#include "math_iterator.h"
|
||||
|
@ -59,4 +59,3 @@ void MathKernInset::normalize(NormalStream & os) const
|
||||
{
|
||||
os << "[kern " << wid_.asLatexString() << "]";
|
||||
}
|
||||
|
||||
|
@ -77,4 +77,3 @@ void MathMacroArgument::substitute(MathMacro const & m)
|
||||
it->nucleus()->handleFont(code_);
|
||||
expanded_ = true;
|
||||
}
|
||||
|
||||
|
@ -182,4 +182,3 @@ bool MathNestInset::editing() const
|
||||
{
|
||||
return mathcursor && mathcursor->isInside(this);
|
||||
}
|
||||
|
||||
|
@ -92,5 +92,3 @@ bool operator<(MathCursorPos const & p, MathCursorPos const & q)
|
||||
return p.idx_ < q.idx_;
|
||||
return p.pos_ < q.pos_;
|
||||
}
|
||||
|
||||
|
||||
|
@ -446,5 +446,3 @@ void MathScriptInset::octavize2(MathInset const * nuc, OctaveStream & os) const
|
||||
if (hasUp() && up().data_.size())
|
||||
os << "^(" << up().data_ << ')';
|
||||
}
|
||||
|
||||
|
||||
|
@ -125,4 +125,3 @@ private:
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
|
@ -82,5 +82,3 @@ void MathSpaceInset::write(WriteStream & os) const
|
||||
if (space_ >= 0 && space_ < 6)
|
||||
os << '\\' << latex_mathspace[space_] << ' ';
|
||||
}
|
||||
|
||||
|
||||
|
@ -125,5 +125,3 @@ void MathStringInset::write(WriteStream & os) const
|
||||
else
|
||||
os << str_;
|
||||
}
|
||||
|
||||
|
||||
|
@ -773,5 +773,3 @@ string convertDelimToLatexName(string const & name)
|
||||
return name;
|
||||
return "\\" + name + " ";
|
||||
}
|
||||
|
||||
|
||||
|
@ -200,5 +200,3 @@ void MathSymbolInset::infoize(ostream & os) const
|
||||
{
|
||||
os << '\\' << name();
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user