]> git.lyx.org Git - features.git/commitdiff
move inlines out of line
authorLars Gullik Bjønnes <larsbj@gullik.org>
Thu, 1 Mar 2001 19:57:01 +0000 (19:57 +0000)
committerLars Gullik Bjønnes <larsbj@gullik.org>
Thu, 1 Mar 2001 19:57:01 +0000 (19:57 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1657 a592a061-630c-0410-9148-cb99ea01b6c8

src/mathed/ChangeLog
src/mathed/math_inset.C
src/mathed/math_inset.h

index 93b9a92b723ef283064997af3538ad82b802707e..568373aab67da981cdc45e35e7ffb83e4d086c74 100644 (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
index ade5ec2db17a2c54084614834f5b393cdd9d73e6..48d2a6e523ca3f877e8f32ed54fa8df069f6e9fb 100644 (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_;
+}
index d292e53ac6967c01a554ad2d92887f780d4e120f..d17d0a90c90eec92beff4a45bb73fdf68439a396 100644 (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