From: Richard Heck Date: Thu, 6 Mar 2008 05:10:04 +0000 (+0000) Subject: Simplify the logic a bit here. X-Git-Tag: 1.6.10~5843 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=ac89b178de4bbed836ee441be017c31751e0a527;p=features.git Simplify the logic a bit here. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23504 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/frontends/qt4/GuiToolbar.cpp b/src/frontends/qt4/GuiToolbar.cpp index 34500bc681..8c59d089e3 100644 --- a/src/frontends/qt4/GuiToolbar.cpp +++ b/src/frontends/qt4/GuiToolbar.cpp @@ -657,7 +657,8 @@ void GuiLayoutBox::selected(int index) { // get selection QModelIndex mindex = filterModel_->mapToSource(filterModel_->index(index, 1)); - docstring const name = qstring_to_ucs4(model_->itemFromIndex(mindex)->text()); + docstring const layoutName = + qstring_to_ucs4(model_->itemFromIndex(mindex)->text()); owner_.setFocus(); @@ -668,17 +669,13 @@ void GuiLayoutBox::selected(int index) } // find corresponding text class - for (size_t i = 0; i != text_class_->layoutCount(); ++i) { - docstring const & itname = text_class_->layout(i)->name(); - if (itname == name) { - FuncRequest const func(LFUN_LAYOUT, itname, - FuncRequest::TOOLBAR); - theLyXFunc().setLyXView(&owner_); - lyx::dispatch(func); - updateContents(false); - resetFilter(); - return; - } + if (text_class_->hasLayout(layoutName)) { + FuncRequest const func(LFUN_LAYOUT, layoutName, FuncRequest::TOOLBAR); + theLyXFunc().setLyXView(&owner_); + lyx::dispatch(func); + updateContents(false); + resetFilter(); + return; } lyxerr << "ERROR (layoutSelected): layout not found!" << endl; }