]> git.lyx.org Git - lyx.git/commitdiff
Oups, compilation fix (missing a '{')
authorAbdelrazak Younes <younes@lyx.org>
Fri, 24 Mar 2006 17:37:44 +0000 (17:37 +0000)
committerAbdelrazak Younes <younes@lyx.org>
Fri, 24 Mar 2006 17:37:44 +0000 (17:37 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13488 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/QDocumentDialog.C

index ae42425e468dc94452a5ccc9c7358946856a7c5c..9a39b1c7154cc5045d18b4f7e446783ddedebcd0 100644 (file)
@@ -864,7 +864,7 @@ void QDocumentDialog::update(BufferParams const & params)
        // numbering
        int const min_toclevel = form_->controller().textClass().min_toclevel();
        int const max_toclevel = form_->controller().textClass().max_toclevel();
-       if (form_->controller().textClass().hasTocLevels())
+       if (form_->controller().textClass().hasTocLevels()) {
                numberingModule->setEnabled(true);
                numberingModule->depthSL->setMinValue(min_toclevel - 1);
                numberingModule->depthSL->setMaxValue(max_toclevel);