summaryrefslogtreecommitdiff
path: root/sc/inc/sheetdata.hxx
diff options
context:
space:
mode:
authorNiklas Nebel <nn@openoffice.org>2010-04-13 15:25:33 +0200
committerNiklas Nebel <nn@openoffice.org>2010-04-13 15:25:33 +0200
commit2975955db0512b8ba6ac4a543cedcf8e2fe1879c (patch)
tree34a0b031adabd5dae99533a53561043cbc31d896 /sc/inc/sheetdata.hxx
parent9dea2514f97c24244c04c7a957b755f2f7427e6d (diff)
fwk140: #i108978# copy sheets from stream only if a SFX event was notified before saving
Diffstat (limited to 'sc/inc/sheetdata.hxx')
-rw-r--r--sc/inc/sheetdata.hxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/sc/inc/sheetdata.hxx b/sc/inc/sheetdata.hxx
index e23402c5fff0..de67786ff9fe 100644
--- a/sc/inc/sheetdata.hxx
+++ b/sc/inc/sheetdata.hxx
@@ -132,6 +132,8 @@ class ScSheetSaveData
ScNoteStyleEntry maPreviousNote;
+ bool mbInSupportedSave;
+
public:
ScSheetSaveData();
~ScSheetSaveData();
@@ -174,6 +176,9 @@ public:
const std::vector<ScTextStyleEntry>& GetNoteParaStyles() const { return maNoteParaStyles; }
const std::vector<ScTextStyleEntry>& GetNoteTextStyles() const { return maNoteTextStyles; }
const std::vector<ScTextStyleEntry>& GetTextStyles() const { return maTextStyles; }
+
+ bool IsInSupportedSave() const;
+ void SetInSupportedSave( bool bSet );
};
#endif