From 5078b7ab5701b424a34acf107fb596c8b3bce3f0 Mon Sep 17 00:00:00 2001 From: Abdelrazak Younes Date: Thu, 11 Jan 2007 18:25:11 +0000 Subject: [PATCH] tiny optimisation. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16652 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/dociterator.C | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/dociterator.C b/src/dociterator.C index 7221d1438c..5b43b85310 100644 --- a/src/dociterator.C +++ b/src/dociterator.C @@ -274,11 +274,12 @@ void DocIterator::forwardPos(bool ignorecollapsed) return; } + InsetBase * nextinset = nextInset(); // jump over collapsables if they are collapsed // FIXME: the check for asInsetMath() shouldn't be necessary // but math insets do not return a sensible editable() state yet. - if (ignorecollapsed && nextInset() && (!nextInset()->asInsetMath() - && nextInset()->editable() != InsetBase::HIGHLY_EDITABLE)) { + if (ignorecollapsed && nextinset && (!nextinset->asInsetMath() + && nextinset->editable() != InsetBase::HIGHLY_EDITABLE)) { ++top().pos(); return; } -- 2.39.5