diff options
Diffstat (limited to 'sw/inc/doc.hxx')
-rw-r--r-- | sw/inc/doc.hxx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sw/inc/doc.hxx b/sw/inc/doc.hxx index 7bd5e2dd9abe..b891b4ec85d1 100644 --- a/sw/inc/doc.hxx +++ b/sw/inc/doc.hxx @@ -591,6 +591,8 @@ private: sal_Bool mbStartIdleTimer; // idle timer mode start/stop + bool mbSetDrawDefaults; // set draw pool defaults for freshly created documents + static SwAutoCompleteWord *pACmpltWords; // List of all words for AutoComplete //---------------- private methods ------------------------------ @@ -2043,6 +2045,13 @@ public: */ void dumpAsXml( xmlTextWriterPtr writer = NULL ); #endif + + /// must be called only in SwDocShell::InitNew, causes UpdateDrawDefaults to be called when drawing layer is created + void SetDrawDefaults(); + +private: + /// method to set new graphics pool defaults, must only be called by SetDrawDefaults! + void UpdateDrawDefaults(); }; // This method is called in Dtor of SwDoc and deletes cache of ContourObjects. |