* cosmetic

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23451 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Stefan Schimanski 2008-03-04 14:57:46 +00:00
parent 8aac28367e
commit cf15bd840b
2 changed files with 25 additions and 25 deletions

View File

@ -283,7 +283,7 @@ void MathMacro::updateMacro(MacroContext const & mc)
} }
void MathMacro::updateRepresentation(Cursor const * bvCur) void MathMacro::updateRepresentation()
{ {
// known macro? // known macro?
if (macro_ == 0) if (macro_ == 0)
@ -297,7 +297,9 @@ void MathMacro::updateRepresentation(Cursor const * bvCur)
return; return;
// macro changed? // macro changed?
if (needsUpdate_) { if (!needsUpdate_)
return;
needsUpdate_ = false; needsUpdate_ = false;
// get default values of macro // get default values of macro
@ -316,11 +318,9 @@ void MathMacro::updateRepresentation(Cursor const * bvCur)
// expanding macro with the values // expanding macro with the values
macro_->expand(values, expanded_.cell(0)); macro_->expand(values, expanded_.cell(0));
// get definition for list edit mode // get definition for list edit mode
docstring const & display = macro_->display(); docstring const & display = macro_->display();
asArray(display.empty() ? macro_->definition() : display, definition_); asArray(display.empty() ? macro_->definition() : display, definition_);
}
} }

View File

@ -133,7 +133,7 @@ protected:
/// update macro definition /// update macro definition
void updateMacro(MacroContext const & mc); void updateMacro(MacroContext const & mc);
/// check if macro definition changed, argument changed etc. and adapt /// check if macro definition changed, argument changed etc. and adapt
void updateRepresentation(Cursor const * bvCur); void updateRepresentation();
/// empty macro, put arguments into args, possibly strip arity-attachedArgsNum_ empty ones. /// empty macro, put arguments into args, possibly strip arity-attachedArgsNum_ empty ones.
/// Includes the optional arguments. /// Includes the optional arguments.
void detachArguments(std::vector<MathData> & args, bool strip); void detachArguments(std::vector<MathData> & args, bool strip);