summaryrefslogtreecommitdiff
path: root/io/source/stm/odata.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2013-03-04 23:11:48 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2013-03-04 23:14:41 +0900
commitce33f85ffdb8612c9fba9356acdaa93a08a9ba41 (patch)
tree26f5c53749cbefe24c8bfe0380e553131ef285a6 /io/source/stm/odata.cxx
parentf348749a83cb985c5bf40603a0c8b4e3b5950eab (diff)
sal_Bool to bool
Change-Id: I8c554fb3faead41c974af9c2a89728bd0bdf5eb6
Diffstat (limited to 'io/source/stm/odata.cxx')
-rw-r--r--io/source/stm/odata.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/io/source/stm/odata.cxx b/io/source/stm/odata.cxx
index c928de02ca5b..1636c1a8b844 100644
--- a/io/source/stm/odata.cxx
+++ b/io/source/stm/odata.cxx
@@ -1104,7 +1104,7 @@ void OObjectOutputStream::connectToMarkable(void)
// find the markable stream !
Reference< XInterface > rTry(m_output);
- while( sal_True ) {
+ while( true ) {
if( ! rTry.is() )
{
throw NotConnectedException();
@@ -1411,7 +1411,7 @@ void OObjectInputStream::connectToMarkable()
// find the markable stream !
Reference< XInterface > rTry(m_input);
- while( sal_True ) {
+ while( true ) {
if( ! rTry.is() )
{
throw NotConnectedException( );