From 285bdca67927584b2d56ab69c8a562a4b4c76326 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Lars=20Gullik=20Bj=C3=B8nnes?= Date: Thu, 1 Mar 2001 19:57:01 +0000 Subject: [PATCH] move inlines out of line git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1657 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/mathed/ChangeLog | 3 +++ src/mathed/math_inset.C | 17 +++++++++++++++++ src/mathed/math_inset.h | 21 --------------------- 3 files changed, 20 insertions(+), 21 deletions(-) diff --git a/src/mathed/ChangeLog b/src/mathed/ChangeLog index 93b9a92b72..568373aab6 100644 --- a/src/mathed/ChangeLog +++ b/src/mathed/ChangeLog @@ -1,5 +1,8 @@ 2001-03-01 Lars Gullik Bjønnes + * 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 diff --git a/src/mathed/math_inset.C b/src/mathed/math_inset.C index ade5ec2db1..48d2a6e523 100644 --- a/src/mathed/math_inset.C +++ b/src/mathed/math_inset.C @@ -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_; +} diff --git a/src/mathed/math_inset.h b/src/mathed/math_inset.h index d292e53ac6..d17d0a90c9 100644 --- a/src/mathed/math_inset.h +++ b/src/mathed/math_inset.h @@ -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 -- 2.39.2