summaryrefslogtreecommitdiff
path: root/testtools
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2012-09-25 17:00:42 +0200
committerMichael Stahl <mstahl@redhat.com>2012-10-04 21:29:34 +0200
commitb6831de354009a09b0606c0efe04b5601dd77f4c (patch)
tree940d4197be8dd6a3bd11ef3ec5f475299c899f8b /testtools
parentf649c5acd4269eb6df4303127fb780d18ffe388a (diff)
sal_Bool->bool in testtools
Change-Id: I716c0a08565e874bcb0667e72ed5261231a4743d
Diffstat (limited to 'testtools')
-rw-r--r--testtools/source/bridgetest/cppobj.cxx10
1 files changed, 5 insertions, 5 deletions
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<sal_Bool> _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
{