mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
move inlines out of line
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1657 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
0452a89961
commit
285bdca679
@ -1,5 +1,8 @@
|
|||||||
2001-03-01 Lars Gullik Bjřnnes <larsbj@trylle.birdstep.com>
|
2001-03-01 Lars Gullik Bjřnnes <larsbj@trylle.birdstep.com>
|
||||||
|
|
||||||
|
* math_inset.C (size): move out of line
|
||||||
|
(incSize): ditto
|
||||||
|
|
||||||
* math_macroarg.h: remove default constructor
|
* math_macroarg.h: remove default constructor
|
||||||
|
|
||||||
* math_macroarg.C: include Lsstream.h instead of debug.h
|
* math_macroarg.C: include Lsstream.h instead of debug.h
|
||||||
|
@ -148,3 +148,20 @@ void MathedInset::defaultWidth(int dw)
|
|||||||
df_width = dw;
|
df_width = dw;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
short MathedInset::size() const
|
||||||
|
{
|
||||||
|
return size_;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void MathedInset::size(short s)
|
||||||
|
{
|
||||||
|
size_ = s;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void MathedInset::incSize()
|
||||||
|
{
|
||||||
|
++size_;
|
||||||
|
}
|
||||||
|
@ -114,25 +114,4 @@ private:
|
|||||||
///
|
///
|
||||||
short size_;
|
short size_;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
inline
|
|
||||||
short MathedInset::size() const
|
|
||||||
{
|
|
||||||
return size_;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
inline
|
|
||||||
void MathedInset::size(short s)
|
|
||||||
{
|
|
||||||
size_ = s;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
inline
|
|
||||||
void MathedInset::incSize()
|
|
||||||
{
|
|
||||||
++size_;
|
|
||||||
}
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user