mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-13 20:09:59 +00:00
rename math_(root|grid).[Ch] to math_(root|grid)inset.[Ch]
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2259 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
099779019f
commit
5c40a062b2
@ -1,10 +1,15 @@
|
||||
2001-07-16 André Pönitz <poenitz@htwm.de>
|
||||
|
||||
* math_grid.[Ch] -> math_gridinset.[Ch]
|
||||
math_root.[Ch] -> math_rootinset.[Ch]: more consistent names
|
||||
|
||||
2001-07-16 Lars Gullik Bjønnes <larsbj@birdstep.com>
|
||||
|
||||
* math_cursor.C (operator==): moved ouf of struct
|
||||
(operator<): ditto
|
||||
(normalAnchor): reversed one test (but shouldn't it really be >= ?)
|
||||
|
||||
2001-07-12 André Pönitz <poenitz@htwm.de>
|
||||
2001-07-16 André Pönitz <poenitz@htwm.de>
|
||||
|
||||
* math_cursor.[hC]: multicell selection (multicell pasete still defunct)
|
||||
|
||||
|
@ -35,8 +35,8 @@ libmathed_la_SOURCES = \
|
||||
math_fracinset.h \
|
||||
math_funcinset.C \
|
||||
math_funcinset.h \
|
||||
math_grid.C \
|
||||
math_grid.h \
|
||||
math_gridinset.C \
|
||||
math_gridinset.h \
|
||||
math_hash.C \
|
||||
math_inset.C \
|
||||
math_inset.h \
|
||||
@ -52,8 +52,8 @@ libmathed_la_SOURCES = \
|
||||
math_matrixinset.h \
|
||||
math_parser.C \
|
||||
math_parser.h \
|
||||
math_root.C \
|
||||
math_root.h \
|
||||
math_rootinset.C \
|
||||
math_rootinset.h \
|
||||
math_scriptinset.C \
|
||||
math_scriptinset.h \
|
||||
math_sizeinset.C \
|
||||
|
@ -2,7 +2,7 @@
|
||||
#ifndef MATH_ARRAYINSET_H
|
||||
#define MATH_ARRAYINSET_H
|
||||
|
||||
#include "math_grid.h"
|
||||
#include "math_gridinset.h"
|
||||
|
||||
#ifdef __GNUG__
|
||||
#pragma interface
|
||||
|
@ -23,33 +23,31 @@
|
||||
#include <algorithm>
|
||||
#include <cctype>
|
||||
|
||||
#include "math_inset.h"
|
||||
#include "math_arrayinset.h"
|
||||
#include "math_parser.h"
|
||||
#include "math_cursor.h"
|
||||
#include "math_macro.h"
|
||||
#include "math_macroarg.h"
|
||||
#include "math_macrotable.h"
|
||||
#include "math_root.h"
|
||||
#include "support/lstrings.h"
|
||||
#include "debug.h"
|
||||
#include "LColor.h"
|
||||
#include "Painter.h"
|
||||
#include "math_matrixinset.h"
|
||||
#include "math_grid.h"
|
||||
#include "math_spaceinset.h"
|
||||
#include "math_funcinset.h"
|
||||
#include "math_bigopinset.h"
|
||||
#include "math_fracinset.h"
|
||||
#include "math_decorationinset.h"
|
||||
#include "math_dotsinset.h"
|
||||
#include "math_deliminset.h"
|
||||
#include "math_macrotemplate.h"
|
||||
#include "math_sqrtinset.h"
|
||||
#include "math_scriptinset.h"
|
||||
#include "mathed/support.h"
|
||||
#include "formulabase.h"
|
||||
|
||||
#include "math_cursor.h"
|
||||
#include "math_arrayinset.h"
|
||||
#include "math_bigopinset.h"
|
||||
#include "math_decorationinset.h"
|
||||
#include "math_deliminset.h"
|
||||
#include "math_dotsinset.h"
|
||||
#include "math_fracinset.h"
|
||||
#include "math_funcinset.h"
|
||||
#include "math_gridinset.h"
|
||||
#include "math_macro.h"
|
||||
#include "math_macroarg.h"
|
||||
#include "math_macrotable.h"
|
||||
#include "math_macrotemplate.h"
|
||||
#include "math_matrixinset.h"
|
||||
#include "math_rootinset.h"
|
||||
#include "math_spaceinset.h"
|
||||
#include "math_sqrtinset.h"
|
||||
#include "support/lstrings.h"
|
||||
#include "math_scriptinset.h"
|
||||
#include "math_parser.h"
|
||||
|
||||
using std::endl;
|
||||
using std::min;
|
||||
|
@ -2,7 +2,7 @@
|
||||
#pragma implementation
|
||||
#endif
|
||||
|
||||
#include "math_grid.h"
|
||||
#include "math_gridinset.h"
|
||||
#include "support/LOstream.h"
|
||||
#include "debug.h"
|
||||
|
||||
@ -386,7 +386,7 @@ void MathGridInset::idxDelete(int & idx, bool & popit, bool & deleteit)
|
||||
}
|
||||
|
||||
|
||||
void MathGridInset::idxDeleteRange(int from, int to)
|
||||
void MathGridInset::idxDeleteRange(int /*from*/, int /*to*/)
|
||||
{
|
||||
// leave this unimplemented unless someone wants to have it.
|
||||
/*
|
@ -2,9 +2,7 @@
|
||||
#ifndef MATH_MATRIXINSET_H
|
||||
#define MATH_MATRIXINSET_H
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "math_grid.h"
|
||||
#include "math_gridinset.h"
|
||||
|
||||
#ifdef __GNUG__
|
||||
#pragma interface
|
||||
|
@ -28,22 +28,22 @@
|
||||
#include "math_parser.h"
|
||||
#include "array.h"
|
||||
#include "math_inset.h"
|
||||
#include "math_arrayinset.h"
|
||||
#include "math_bigopinset.h"
|
||||
#include "math_dotsinset.h"
|
||||
#include "math_decorationinset.h"
|
||||
#include "math_deliminset.h"
|
||||
#include "math_fracinset.h"
|
||||
#include "math_funcinset.h"
|
||||
#include "math_macro.h"
|
||||
#include "math_macrotable.h"
|
||||
#include "math_macrotemplate.h"
|
||||
#include "math_root.h"
|
||||
#include "math_arrayinset.h"
|
||||
#include "math_sqrtinset.h"
|
||||
#include "math_matrixinset.h"
|
||||
#include "math_bigopinset.h"
|
||||
#include "math_funcinset.h"
|
||||
#include "math_spaceinset.h"
|
||||
#include "math_sizeinset.h"
|
||||
#include "math_rootinset.h"
|
||||
#include "math_scriptinset.h"
|
||||
#include "math_dotsinset.h"
|
||||
#include "math_fracinset.h"
|
||||
#include "math_deliminset.h"
|
||||
#include "math_decorationinset.h"
|
||||
#include "math_sizeinset.h"
|
||||
#include "math_spaceinset.h"
|
||||
#include "math_sqrtinset.h"
|
||||
#include "debug.h"
|
||||
#include "mathed/support.h"
|
||||
#include "lyxlex.h"
|
||||
|
@ -15,7 +15,7 @@
|
||||
#pragma implementation
|
||||
#endif
|
||||
|
||||
#include "math_root.h"
|
||||
#include "math_rootinset.h"
|
||||
#include "support/LOstream.h"
|
||||
#include "Painter.h"
|
||||
|
Loading…
x
Reference in New Issue
Block a user