mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 10:51:03 +00:00
One line fix to bug 1513.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8792 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
fa29d7ee98
commit
e2c44bb179
@ -1,3 +1,8 @@
|
||||
2004-06-01 Angus Leeming <leeming@lyx.org>
|
||||
|
||||
* output_linuxdoc.C (linuxdocParagraphs): Check that the paragraph
|
||||
contains data before calling isInset(0). (Bug 1513.)
|
||||
|
||||
2004-06-01 Georg Baum <Georg.Baum@post.rwth-aachen.de>
|
||||
|
||||
* exporter.C (checkOverwrite): new method
|
||||
|
@ -46,7 +46,7 @@ void linuxdocParagraphs(Buffer const & buf,
|
||||
for (; pit != pend; ++pit) {
|
||||
LyXLayout_ptr const & style = pit->layout();
|
||||
// treat <toc> as a special case for compatibility with old code
|
||||
if (pit->isInset(0)) {
|
||||
if (!pit->empty() && pit->isInset(0)) {
|
||||
InsetBase const * inset = pit->getInset(0);
|
||||
if (inset->lyxCode() == InsetOld::TOC_CODE) {
|
||||
string const temp = "toc";
|
||||
|
Loading…
Reference in New Issue
Block a user