diff options
author | Kohei Yoshida <kyoshida@novell.com> | 2010-12-13 13:51:18 -0500 |
---|---|---|
committer | Kohei Yoshida <kyoshida@novell.com> | 2010-12-13 23:38:19 -0500 |
commit | 5fe86425ccc3fcd1bce1076e9f57f70be55f8d92 (patch) | |
tree | c382f80701890c1acacb210d4265ec625fe70ab6 /sc/inc/scabstdlg.hxx | |
parent | 8bf8c7eeb683bc3e62a56b367448fdffd4e844d8 (diff) |
BOOL -> bool, and tabs to whitespace in new code.
Also, putting a bool declaration in the right context.
Diffstat (limited to 'sc/inc/scabstdlg.hxx')
-rw-r--r-- | sc/inc/scabstdlg.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/inc/scabstdlg.hxx b/sc/inc/scabstdlg.hxx index f19cc30d984b..b0abb16ff654 100644 --- a/sc/inc/scabstdlg.hxx +++ b/sc/inc/scabstdlg.hxx @@ -213,7 +213,7 @@ public: virtual USHORT GetSelectedDocument () const = 0; virtual USHORT GetSelectedTable () const = 0; virtual BOOL GetCopyTable () const = 0; - virtual BOOL GetRenameTable () const = 0; + virtual bool GetRenameTable () const = 0; virtual void GetTabNameString( String& rString ) const = 0; virtual void SetCopyTable (BOOL bFlag=TRUE) = 0; virtual void EnableCopyTable (BOOL bFlag=TRUE) = 0; |