From b6831de354009a09b0606c0efe04b5601dd77f4c Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 25 Sep 2012 17:00:42 +0200 Subject: sal_Bool->bool in testtools Change-Id: I716c0a08565e874bcb0667e72ed5261231a4743d --- testtools/source/bridgetest/cppobj.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'testtools/source') diff --git a/testtools/source/bridgetest/cppobj.cxx b/testtools/source/bridgetest/cppobj.cxx index def69d93af37..e10a47b95c70 100644 --- a/testtools/source/bridgetest/cppobj.cxx +++ b/testtools/source/bridgetest/cppobj.cxx @@ -130,8 +130,8 @@ class Test_Impl : { TestData _aData, _aStructData; sal_Int32 m_nLastCallId; - sal_Bool m_bFirstCall; - sal_Bool m_bSequenceOfCallTestPassed; + bool m_bFirstCall; + bool m_bSequenceOfCallTestPassed; Mutex m_mutex; Sequence _arBool; @@ -155,8 +155,8 @@ class Test_Impl : public: Test_Impl() : m_nLastCallId( 0 ), - m_bFirstCall( sal_True ), - m_bSequenceOfCallTestPassed( sal_True ) + m_bFirstCall( true ), + m_bSequenceOfCallTestPassed( true ) {} virtual ~Test_Impl() { @@ -514,7 +514,7 @@ void Test_Impl::call( sal_Int32 nCallId , sal_Int32 nWaitMUSEC ) throw(::com::su wait(nWaitMUSEC); if( m_bFirstCall ) { - m_bFirstCall = sal_False; + m_bFirstCall = false; } else { -- cgit