]> git.lyx.org Git - features.git/commitdiff
Undo hotfixes for missing files. Sorry guys.
authorAndré Pönitz <poenitz@gmx.net>
Tue, 7 Aug 2001 04:53:01 +0000 (04:53 +0000)
committerAndré Pönitz <poenitz@gmx.net>
Tue, 7 Aug 2001 04:53:01 +0000 (04:53 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2433 a592a061-630c-0410-9148-cb99ea01b6c8

src/mathed/math_cursor.C
src/mathed/math_parser.C

index 0269ab391a93b1fc2bad46c6a675b48d67ac5fd1..a6bb45d1f51ed9e5bc7d058d636146279d3f83e8 100644 (file)
 #include "formulabase.h"
 #include "math_cursor.h"
 #include "math_arrayinset.h"
-#if 0
 #include "math_bigopinset.h"
-#endif
 #include "math_symbolinset.h"
 #include "math_decorationinset.h"
 #include "math_deliminset.h"
 #include "math_dotsinset.h"
 #include "math_fracinset.h"
 #include "math_funcinset.h"
-#if 0
 #include "math_funcliminset.h"
-#endif
 #include "math_gridinset.h"
 #include "math_macro.h"
 #include "math_macroarg.h"
@@ -679,15 +675,11 @@ void MathCursor::interpret(string const & s)
        } else {
                switch (l->token) {
                        case LM_TK_BIGSYM:
-#if 0
                                p = new MathBigopInset(l);
-#endif
                                break;
 
                        case LM_TK_FUNCLIM:
-#if 0
                                p = new MathFuncLimInset(l);
-#endif
                                break;
 
                        case LM_TK_SYM: 
index dc7ff9427262f55c8c5d450c4f5001a3db2f315c..0bcf7bed27c524226135188d1ffe7fcad5c85de7 100644 (file)
 #include "array.h"
 #include "math_inset.h"
 #include "math_arrayinset.h"
-#if 0
 #include "math_bigopinset.h"
-#endif
 #include "math_dotsinset.h"
 #include "math_decorationinset.h"
 #include "math_deliminset.h"
 #include "math_fracinset.h"
 #include "math_funcinset.h"
-#if 0
 #include "math_funcliminset.h"
-#endif
 #include "math_macro.h"
 #include "math_macrotable.h"
 #include "math_macrotemplate.h"
@@ -664,16 +660,12 @@ void mathed_parse_into(MathArray & array, unsigned flags)
 
                case LM_TK_BIGSYM:  
                        limits = 0;
-#if 0
                        array.push_back(new MathBigopInset(yylval.l));
-#endif
                        break;
 
                case LM_TK_FUNCLIM:
                        limits = 0;
-#if 0
                        array.push_back(new MathFuncLimInset(yylval.l));
-#endif
                        break;
 
                case LM_TK_SYM: