diff options
| author | Martin Owens <doctormo@gmail.com> | 2014-01-22 03:20:23 +0000 |
|---|---|---|
| committer | Martin Owens <doctormo@gmail.com> | 2014-01-22 03:20:23 +0000 |
| commit | e01eb5907b04fdc194551741be6c6dbf5ee6f7e5 (patch) | |
| tree | 5b0051ad37589ddaa109f88cf9cf8ce1d1687945 /src/document.h | |
| parent | EMF export: fix handling of transformed rectangular gradients (bug #1263242) (diff) | |
| download | inkscape-e01eb5907b04fdc194551741be6c6dbf5ee6f7e5.tar.gz inkscape-e01eb5907b04fdc194551741be6c6dbf5ee6f7e5.zip | |
Improve use tag logic by recording the loaded documents in a list.
(bzr r12969)
Diffstat (limited to 'src/document.h')
| -rw-r--r-- | src/document.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/document.h b/src/document.h index cc565e3aa..e804a4980 100644 --- a/src/document.h +++ b/src/document.h @@ -25,6 +25,7 @@ #include "gc-finalized.h" #include "gc-anchored.h" #include <glibmm/ustring.h> +#include <boost/ptr_container/ptr_list.hpp> #include <vector> namespace Avoid { @@ -120,6 +121,10 @@ public: GSList *_collection_queue; + // A list of svg documents being used or shown within this document + boost::ptr_list<SPDocument> child_documents; + SPDocument *parent_document; + bool oldSignalsConnected; /** Returns our SPRoot */ |
