diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2012-07-26 01:28:37 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2012-07-26 10:07:45 +0900 |
commit | 9e65cab1e7d10d8864c394db364a802ba5ec4444 (patch) | |
tree | 454faa5e519e5eb60254533c797d4bb7edbaf9d5 /basctl/source/inc | |
parent | 1bd402eef7c193576cbdac8556c2783636937124 (diff) |
sal_Bool -> bool
Change-Id: I32f56e8577264eb9d125dbe3fcba2af7a4361713
Diffstat (limited to 'basctl/source/inc')
-rw-r--r-- | basctl/source/inc/bastypes.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/basctl/source/inc/bastypes.hxx b/basctl/source/inc/bastypes.hxx index ffe1a9a0e4a5..7795becbb47d 100644 --- a/basctl/source/inc/bastypes.hxx +++ b/basctl/source/inc/bastypes.hxx @@ -183,8 +183,8 @@ public: virtual void BasicStarted(); virtual void BasicStopped(); - sal_Bool IsSuspended() const - { return ( nStatus & BASWIN_SUSPENDED ) ? sal_True : sal_False; } + bool IsSuspended() const + { return ( nStatus & BASWIN_SUSPENDED ) ? true : false; } const ScriptDocument& GetDocument() const { return m_aDocument; } @@ -265,7 +265,7 @@ public: LibInfoItem* GetInfo( const LibInfoKey& rKey ); }; -void CutLines( ::rtl::OUString& rStr, sal_Int32 nStartLine, sal_Int32 nLines, sal_Bool bEraseTrailingEmptyLines = sal_False ); +void CutLines( ::rtl::OUString& rStr, sal_Int32 nStartLine, sal_Int32 nLines, bool bEraseTrailingEmptyLines = false ); ::rtl::OUString CreateMgrAndLibStr( const ::rtl::OUString& rMgrName, const ::rtl::OUString& rLibName ); sal_uLong CalcLineCount( SvStream& rStream ); |