diff options
Diffstat (limited to 'sc/source/ui/inc/mvtabdlg.hxx')
-rw-r--r-- | sc/source/ui/inc/mvtabdlg.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/ui/inc/mvtabdlg.hxx b/sc/source/ui/inc/mvtabdlg.hxx index e0f8addead60..9a59e93b5832 100644 --- a/sc/source/ui/inc/mvtabdlg.hxx +++ b/sc/source/ui/inc/mvtabdlg.hxx @@ -34,10 +34,10 @@ public: ScMoveTableDlg(Window* pParent, const OUString& rDefault); virtual ~ScMoveTableDlg(); - sal_uInt16 GetSelectedDocument () const; - SCTAB GetSelectedTable () const; - bool GetCopyTable () const; - bool GetRenameTable () const; + sal_uInt16 GetSelectedDocument () const { return nDocument; } + SCTAB GetSelectedTable () const { return nTable; } + bool GetCopyTable () const { return bCopyTable; } + bool GetRenameTable () const { return bRenameTable; } void GetTabNameString( OUString& rString ) const; void SetForceCopyTable (); void EnableCopyTable (bool bFlag=true); |