mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-22 16:37:28 +00:00
constify GuiPrintNomencl::isValid()
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@29852 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
b7515068f8
commit
e5b3cdf650
@ -129,11 +129,11 @@ void GuiPrintNomencl::applyView()
|
||||
}
|
||||
|
||||
|
||||
bool GuiPrintNomencl::isValid()
|
||||
bool GuiPrintNomencl::isValid() const
|
||||
{
|
||||
return (setWidthCO->itemData(
|
||||
return setWidthCO->itemData(
|
||||
setWidthCO->currentIndex()).toString() != "custom"
|
||||
|| !valueLE->text().isEmpty());
|
||||
|| !valueLE->text().isEmpty();
|
||||
}
|
||||
|
||||
|
||||
|
@ -49,7 +49,7 @@ private:
|
||||
///
|
||||
bool isBufferDependent() const { return true; }
|
||||
///
|
||||
bool isValid();
|
||||
bool isValid() const;
|
||||
|
||||
///
|
||||
InsetCommandParams params_;
|
||||
|
Loading…
x
Reference in New Issue
Block a user