mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-23 02:14:50 +00:00
cosmetics
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4577 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
63f7e8ce2e
commit
fa77b206ab
@ -3,7 +3,6 @@
|
||||
#define MATH_BRACEINSET_H
|
||||
|
||||
#include "math_nestinset.h"
|
||||
#include "math_metricsinfo.h"
|
||||
|
||||
#ifdef __GNUG__
|
||||
#pragma interface
|
||||
|
@ -15,7 +15,6 @@
|
||||
|
||||
|
||||
|
||||
|
||||
MathFontInset::MathFontInset(string const & name)
|
||||
: MathNestInset(1), name_(name)
|
||||
{
|
||||
|
@ -9,6 +9,7 @@
|
||||
#include "math_mathmlstream.h"
|
||||
#include "math_streamstr.h"
|
||||
#include "math_support.h"
|
||||
#include "support/LOstream.h"
|
||||
|
||||
|
||||
MathSizeInset::MathSizeInset(latexkeys const * l)
|
||||
@ -50,3 +51,9 @@ void MathSizeInset::normalize(NormalStream & os) const
|
||||
{
|
||||
os << "[" << key_->name << ' ' << cell(0) << ']';
|
||||
}
|
||||
|
||||
|
||||
void MathSizeInset::infoize(std::ostream & os) const
|
||||
{
|
||||
os << "Size: " << key_->name;
|
||||
}
|
||||
|
@ -29,6 +29,8 @@ public:
|
||||
void write(WriteStream & os) const;
|
||||
///
|
||||
void normalize(NormalStream &) const;
|
||||
///
|
||||
void infoize(std::ostream & os) const;
|
||||
|
||||
private:
|
||||
///
|
||||
|
Loading…
Reference in New Issue
Block a user