mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Spelling
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9800 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
d5d5562e02
commit
6b9b2cec6a
@ -1,3 +1,8 @@
|
||||
2005-04-10 Martin Vermeer <martin.vermeer@hut.fi>
|
||||
|
||||
* math_deliminset.Ci (isParenthesis):
|
||||
* math_extern.C: Spelling
|
||||
|
||||
2005-04-09 Martin Vermeer <martin.vermeer@hut.fi>
|
||||
|
||||
* math_gridinset.C (doDispatch):
|
||||
|
@ -115,7 +115,7 @@ void MathDelimInset::draw(PainterInfo & pi, int x, int y) const
|
||||
}
|
||||
|
||||
|
||||
bool MathDelimInset::isParanthesis() const
|
||||
bool MathDelimInset::isParenthesis() const
|
||||
{
|
||||
return left_ == "(" && right_ == ")";
|
||||
}
|
||||
|
@ -30,7 +30,7 @@ public:
|
||||
///
|
||||
MathDelimInset const * asDelimInset() const { return this; }
|
||||
/// is it (...)?
|
||||
bool isParanthesis() const;
|
||||
bool isParenthesis() const;
|
||||
/// is it [...]?
|
||||
bool isBrackets() const;
|
||||
/// is it |...|?
|
||||
|
@ -393,13 +393,13 @@ void extractNumbers(MathArray & ar)
|
||||
// search deliminiters
|
||||
//
|
||||
|
||||
bool testOpenParan(MathAtom const & at)
|
||||
bool testOpenParen(MathAtom const & at)
|
||||
{
|
||||
return testString(at, "(");
|
||||
}
|
||||
|
||||
|
||||
bool testCloseParan(MathAtom const & at)
|
||||
bool testCloseParen(MathAtom const & at)
|
||||
{
|
||||
return testString(at, ")");
|
||||
}
|
||||
@ -415,7 +415,7 @@ MathAtom replaceDelims(const MathArray & ar)
|
||||
void extractDelims(MathArray & ar)
|
||||
{
|
||||
//lyxerr << "\nDelims from: " << ar << endl;
|
||||
replaceNested(ar, testOpenParan, testCloseParan, replaceDelims);
|
||||
replaceNested(ar, testOpenParen, testCloseParen, replaceDelims);
|
||||
//lyxerr << "\nDelims to: " << ar << endl;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user