mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-22 07:42:02 +00:00
Issue a warning if a document has two parents. We should do something smart then, but what?
- Do we want to ask the user which of the parents he would like to be the document's parent ? - Do we want to disable any functionality related to parents ? Like references, bibliography, document outline etc. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@31809 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
10e4c1aa7c
commit
0379518340
@ -253,7 +253,11 @@ public:
|
||||
return parent_buffer;
|
||||
}
|
||||
///
|
||||
void setParent(Buffer const * pb) { parent_buffer = pb; }
|
||||
void setParent(Buffer const * pb) {
|
||||
if (parent_buffer != pb)
|
||||
LYXERR0("Warning: a buffer should not have two parents!");
|
||||
parent_buffer = pb;
|
||||
}
|
||||
private:
|
||||
/// So we can force access via the accessors.
|
||||
mutable Buffer const * parent_buffer;
|
||||
|
Loading…
x
Reference in New Issue
Block a user