summaryrefslogtreecommitdiffstats
path: root/sc/source/ui/inc/mvtabdlg.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/inc/mvtabdlg.hxx')
-rw-r--r--sc/source/ui/inc/mvtabdlg.hxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/sc/source/ui/inc/mvtabdlg.hxx b/sc/source/ui/inc/mvtabdlg.hxx
index 152a8bf927a6..e850d9bff41c 100644
--- a/sc/source/ui/inc/mvtabdlg.hxx
+++ b/sc/source/ui/inc/mvtabdlg.hxx
@@ -50,7 +50,7 @@ public:
USHORT GetSelectedDocument () const;
SCTAB GetSelectedTable () const;
- BOOL GetCopyTable () const;
+ bool GetCopyTable () const;
bool GetRenameTable () const;
void GetTabNameString( String& rString ) const;
void SetForceCopyTable ();
@@ -87,8 +87,10 @@ private:
USHORT nDocument;
SCTAB nTable;
- BOOL bCopyTable;
- BOOL bRenameTable;
+ bool bCopyTable:1;
+ bool bRenameTable:1;
+ bool mbEverEdited:1;
+
//--------------------------------------
void Init ();
void InitBtnRename ();