mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-25 14:04:25 +00:00
branch: Fix a crash in adv F&R when a manual could not be loaded
see r40027. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_2_0_X@40039 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
11e727b977
commit
3c8f3c934d
@ -305,6 +305,11 @@ bool FindAndReplaceWidget::findAndReplaceScope(FindAndReplaceOptions & opt, bool
|
||||
guiApp->currentView()->setBusy(true);
|
||||
}
|
||||
buf = theBufferList().getBuffer(fname);
|
||||
if (!buf) {
|
||||
view_.setBusy(false);
|
||||
return false;
|
||||
}
|
||||
|
||||
lyx::dispatch(FuncRequest(LFUN_BUFFER_SWITCH,
|
||||
buf->absFileName()));
|
||||
bv = view_.documentBufferView();
|
||||
@ -327,7 +332,9 @@ bool FindAndReplaceWidget::findAndReplaceScope(FindAndReplaceOptions & opt, bool
|
||||
|
||||
// No match found in current buffer (however old selection might have been replaced)
|
||||
// select next buffer in scope, if any
|
||||
bool prompt = nextPrevBuffer(buf, opt);
|
||||
bool const prompt = nextPrevBuffer(buf, opt);
|
||||
if (!buf)
|
||||
break;
|
||||
if (prompt) {
|
||||
if (wrap_answer != -1)
|
||||
break;
|
||||
|
@ -212,6 +212,9 @@ What's new
|
||||
|
||||
* ADVANCED FIND AND REPLACE
|
||||
|
||||
- Fix a crash when searching in all manuals, but the manuals could
|
||||
not be loaded.
|
||||
|
||||
|
||||
* BUILD/INSTALLATION
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user