* QRef.C (updateRefs): remove recursive call to gotoRef()

(fixes bug 3063); backport from revision 16754.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_4_X@16805 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Spitzmüller 2007-01-22 10:25:09 +00:00
parent 216ce237d7
commit 4832786600
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2007-01-22 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* QRef.C (updateRefs): remove recursive call to gotoRef()
(fixes bug 3063); backport from revision 16754.
2007-01-13 Jürgen Spitzmüller <j.spitzmueller@gmx.de> 2007-01-13 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* QGraphicsDialog.C: allow double values in the bounding * QGraphicsDialog.C: allow double values in the bounding

View File

@ -215,8 +215,6 @@ void QRef::redoRefs()
void QRef::updateRefs() void QRef::updateRefs()
{ {
refs_.clear(); refs_.clear();
if (at_ref_)
gotoRef();
string const name = controller().getBufferName(dialog_->bufferCO->currentItem()); string const name = controller().getBufferName(dialog_->bufferCO->currentItem());
refs_ = controller().getLabelList(name); refs_ = controller().getLabelList(name);
dialog_->sortCB->setEnabled(!refs_.empty()); dialog_->sortCB->setEnabled(!refs_.empty());

View File

@ -115,6 +115,9 @@ What's new
windows). This fix was already used by the official windows installer for windows). This fix was already used by the official windows installer for
1.4.3. 1.4.3.
- Fix a crash when navigating from a label a reference in the crossrefs
dialog (bug 3063) [qt only].
- Fix hang when deleting a forced newling character in change tracking - Fix hang when deleting a forced newling character in change tracking
mode (bug 2865). mode (bug 2865).