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:
Lars Gullik Bjønnes 2001-03-01 19:57:01 +00:00
parent 0452a89961
commit 285bdca679
3 changed files with 20 additions and 21 deletions

View File

@ -1,5 +1,8 @@
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.C: include Lsstream.h instead of debug.h

View File

@ -148,3 +148,20 @@ void MathedInset::defaultWidth(int dw)
df_width = dw;
}
short MathedInset::size() const
{
return size_;
}
void MathedInset::size(short s)
{
size_ = s;
}
void MathedInset::incSize()
{
++size_;
}

View File

@ -114,25 +114,4 @@ private:
///
short size_;
};
inline
short MathedInset::size() const
{
return size_;
}
inline
void MathedInset::size(short s)
{
size_ = s;
}
inline
void MathedInset::incSize()
{
++size_;
}
#endif