Kaydet (Commit) b6831de3 authored tarafından Noel Grandin's avatar Noel Grandin Kaydeden (comit) Michael Stahl

sal_Bool->bool in testtools

Change-Id: I716c0a08565e874bcb0667e72ed5261231a4743d
üst f649c5ac
...@@ -130,8 +130,8 @@ class Test_Impl : ...@@ -130,8 +130,8 @@ class Test_Impl :
{ {
TestData _aData, _aStructData; TestData _aData, _aStructData;
sal_Int32 m_nLastCallId; sal_Int32 m_nLastCallId;
sal_Bool m_bFirstCall; bool m_bFirstCall;
sal_Bool m_bSequenceOfCallTestPassed; bool m_bSequenceOfCallTestPassed;
Mutex m_mutex; Mutex m_mutex;
Sequence<sal_Bool> _arBool; Sequence<sal_Bool> _arBool;
...@@ -155,8 +155,8 @@ class Test_Impl : ...@@ -155,8 +155,8 @@ class Test_Impl :
public: public:
Test_Impl() : m_nLastCallId( 0 ), Test_Impl() : m_nLastCallId( 0 ),
m_bFirstCall( sal_True ), m_bFirstCall( true ),
m_bSequenceOfCallTestPassed( sal_True ) m_bSequenceOfCallTestPassed( true )
{} {}
virtual ~Test_Impl() virtual ~Test_Impl()
{ {
...@@ -514,7 +514,7 @@ void Test_Impl::call( sal_Int32 nCallId , sal_Int32 nWaitMUSEC ) throw(::com::su ...@@ -514,7 +514,7 @@ void Test_Impl::call( sal_Int32 nCallId , sal_Int32 nWaitMUSEC ) throw(::com::su
wait(nWaitMUSEC); wait(nWaitMUSEC);
if( m_bFirstCall ) if( m_bFirstCall )
{ {
m_bFirstCall = sal_False; m_bFirstCall = false;
} }
else else
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment