diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-01-06 12:45:43 -0500 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-01-06 12:47:24 -0500 |
commit | b4ea08def28a510212f4de355b384e8542c014d4 (patch) | |
tree | cee06017a26a862cf293230995088afebfccbc06 /sc/inc | |
parent | 45c537a1185dfca7e51229dde9e9220e5174bd57 (diff) |
Try not to use ScDocument as a "anything can go in" storage place.
There are things that shouldn't be stored in ScDocument believe it or
not.
Change-Id: I6a06327549851fae0fdc0defbc716285d8456aa2
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/document.hxx | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx index 95443b5d9745..0b7fe1d1ae18 100644 --- a/sc/inc/document.hxx +++ b/sc/inc/document.hxx @@ -443,18 +443,7 @@ private: bool mbUseEmbedFonts; - OUString msDocAccTitle; - -public: - void setDocAccTitle( const OUString& rTitle ) { msDocAccTitle = rTitle; } - const OUString getDocAccTitle() const { return msDocAccTitle; } - -private: - bool mbReadOnly; - public: - void setDocReadOnly(bool b){ mbReadOnly = b; } - bool getDocReadOnly() const { return mbReadOnly; } sal_Bool IsCellInChangeTrack(const ScAddress &cell,Color *pColCellBoder); void GetCellChangeTrackNote(const ScAddress &cell, OUString &strTrackText, sal_Bool &pbLeftEdge); bool IsUsingEmbededFonts() { return mbUseEmbedFonts; } |