Fix Bug3171: update bookmark after saveCursor

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16919 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Bo Peng 2007-01-28 21:12:33 +00:00
parent ff8c0848aa
commit eb495d2e98
2 changed files with 13 additions and 3 deletions

View File

@ -155,6 +155,19 @@ void BufferView::setBuffer(Buffer * b)
// to this buffer later on.
buffer_->saveCursor(cursor_.selectionBegin(),
cursor_.selectionEnd());
// update bookmark pit of the current buffer before switch
for (size_t i = 0; i < LyX::ref().session().bookmarks().size(); ++i) {
BookmarksSection::Bookmark const & bm = LyX::ref().session().bookmarks().bookmark(i);
if (buffer()->fileName() != bm.filename.absFilename())
continue;
// if par_id or pit has been changed, reset par_pit and par_id
// see http://bugzilla.lyx.org/show_bug.cgi?id=3092
pit_type new_pit;
int new_id;
boost::tie(new_pit, new_id) = moveToPosition(bm.par_pit, bm.par_id, bm.par_pos);
if (bm.par_pit != new_pit || bm.par_id != new_id)
const_cast<BookmarksSection::Bookmark &>(bm).setPos(new_pit, new_id);
}
// current buffer is going to be switched-off, save cursor pos
LyX::ref().session().lastFilePos().save(FileName(buffer_->fileName()),
boost::tie(cursor_.pit(), cursor_.pos()) );

View File

@ -1165,9 +1165,6 @@ void LyXFunc::dispatch(FuncRequest const & cmd)
// --- buffers ----------------------------------------
case LFUN_BUFFER_SWITCH:
BOOST_ASSERT(lyx_view_);
// update bookmark pit of the current buffer before switch
for (size_t i = 0; i < LyX::ref().session().bookmarks().size(); ++i)
gotoBookmark(i+1, false, false);
lyx_view_->setBuffer(theBufferList().getBuffer(argument));
break;