mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
GuiDocument: rename a function to follow the naming guideline
This commit is contained in:
parent
6495cd135f
commit
f109206c05
@ -1268,7 +1268,7 @@ GuiDocument::GuiDocument(GuiView & lv)
|
||||
connect(mathsModule->MathIndentCO, SIGNAL(activated(int)),
|
||||
this, SLOT(change_adaptor()));
|
||||
connect(mathsModule->MathIndentCO, SIGNAL(activated(int)),
|
||||
this, SLOT(EnableMathIndent(int)));
|
||||
this, SLOT(enableMathIndent(int)));
|
||||
connect(mathsModule->MathIndentLE, SIGNAL(textChanged(const QString &)),
|
||||
this, SLOT(change_adaptor()));
|
||||
connect(mathsModule->MathIndentLengthCO, SIGNAL(activated(int)),
|
||||
@ -1630,7 +1630,7 @@ void GuiDocument::allowMathIndent() {
|
||||
isValid();
|
||||
}
|
||||
|
||||
void GuiDocument::EnableMathIndent(int item)
|
||||
void GuiDocument::enableMathIndent(int item)
|
||||
{
|
||||
bool const enable = (item == 1);
|
||||
mathsModule->MathIndentLE->setEnabled(enable);
|
||||
@ -3413,7 +3413,7 @@ void GuiDocument::paramsToDialog()
|
||||
indent = 1;
|
||||
}
|
||||
mathsModule->MathIndentCO->setCurrentIndex(indent);
|
||||
EnableMathIndent(indent);
|
||||
enableMathIndent(indent);
|
||||
}
|
||||
if (bp_.math_number_before)
|
||||
mathsModule->MathNumberingPosCO->setCurrentIndex(0);
|
||||
|
@ -110,7 +110,7 @@ private Q_SLOTS:
|
||||
void setSkip(int);
|
||||
void enableSkip(bool);
|
||||
void allowMathIndent();
|
||||
void EnableMathIndent(int);
|
||||
void enableMathIndent(int);
|
||||
void browseLayout();
|
||||
void browseMaster();
|
||||
void classChanged();
|
||||
|
Loading…
Reference in New Issue
Block a user