* cosmetics

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@29378 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Vincent van Ravesteijn 2009-04-22 21:17:49 +00:00
parent 96174d2d66
commit b44f8eb2ef
2 changed files with 3 additions and 4 deletions

View File

@ -51,8 +51,7 @@ GuiIndices::GuiIndices(QWidget * parent)
void GuiIndices::update(BufferParams const & params)
{
indiceslist_ = params.indiceslist();
multipleIndicesCB->setChecked(
params.use_indices);
multipleIndicesCB->setChecked(params.use_indices);
bool const state = params.use_indices;
indicesTW->setEnabled(state);
newIndexLE->setEnabled(state);

View File

@ -144,9 +144,9 @@ void GuiPrint::updateContents()
collateCB->setChecked(params_.sorted_copies);
if (params_.all_pages) {
if (params_.all_pages)
allRB->setChecked(true);
} else {
else {
rangeRB->setChecked(true);
fromED->setText(QString::number(params_.from_page));
toED->setText(QString::number(params_.to_page));