summaryrefslogtreecommitdiff
path: root/sc/inc/defaultsoptions.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/inc/defaultsoptions.hxx')
-rw-r--r--sc/inc/defaultsoptions.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/sc/inc/defaultsoptions.hxx b/sc/inc/defaultsoptions.hxx
index 094dc066ec74..0f20b8423af4 100644
--- a/sc/inc/defaultsoptions.hxx
+++ b/sc/inc/defaultsoptions.hxx
@@ -21,6 +21,7 @@ private:
SCTAB nInitTabCount; // number of Tabs for new Spreadsheet doc
OUString aInitTabPrefix; // The Tab prefix name in new Spreadsheet doc
bool bJumboSheets;
+ bool bInitTabPrefixChanged;
public:
ScDefaultsOptions();
@@ -29,8 +30,8 @@ public:
SCTAB GetInitTabCount() const { return nInitTabCount; }
void SetInitTabCount( SCTAB nTabs) { nInitTabCount = nTabs; }
- void SetInitTabPrefix(const OUString& aPrefix) { aInitTabPrefix = aPrefix; }
- const OUString& GetInitTabPrefix() const { return aInitTabPrefix; }
+ void SetInitTabPrefix(const OUString& aPrefix);
+ OUString GetInitTabPrefix() const;
bool GetInitJumboSheets() const { return bJumboSheets; }
#if HAVE_FEATURE_JUMBO_SHEETS
void SetInitJumboSheets( bool b) { bJumboSheets = b; }