From 642cfe8ac206af4fe82bc695d38b5c7f0edf7dc7 Mon Sep 17 00:00:00 2001
From: Mikhail Voytenko <mav@openoffice.org>
Date: Mon, 10 Jan 2011 14:40:57 +0100
Subject: removetooltypes01: #i112600# adjust basic and scaddins

---
 basic/source/comp/io.cxx | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

(limited to 'basic/source/comp/io.cxx')

diff --git a/basic/source/comp/io.cxx b/basic/source/comp/io.cxx
index b211ea0b7b08..958b34ee57ff 100644
--- a/basic/source/comp/io.cxx
+++ b/basic/source/comp/io.cxx
@@ -35,9 +35,9 @@
 
 // Test, ob ein I/O-Channel angegeben wurde
 
-BOOL SbiParser::Channel( BOOL bAlways )
+sal_Bool SbiParser::Channel( sal_Bool bAlways )
 {
-    BOOL bRes = FALSE;
+    sal_Bool bRes = sal_False;
     Peek();
     if( IsHash() )
     {
@@ -46,7 +46,7 @@ BOOL SbiParser::Channel( BOOL bAlways )
             Next();
         aExpr.Gen();
         aGen.Gen( _CHANNEL );
-        bRes = TRUE;
+        bRes = sal_True;
     }
     else if( bAlways )
         Error( SbERR_EXPECTED, "#" );
@@ -60,7 +60,7 @@ BOOL SbiParser::Channel( BOOL bAlways )
 
 void SbiParser::Print()
 {
-    BOOL bChan = Channel();
+    sal_Bool bChan = Channel();
     // Die Ausdruecke zum Drucken:
     while( !bAbort )
     {
@@ -91,7 +91,7 @@ void SbiParser::Print()
 
 void SbiParser::Write()
 {
-    BOOL bChan = Channel();
+    sal_Bool bChan = Channel();
     // Die Ausdruecke zum Drucken:
     while( !bAbort )
     {
@@ -143,8 +143,8 @@ void SbiParser::Line()
 
 void SbiParser::LineInput()
 {
-    Channel( TRUE );
-    // BOOL bChan = Channel( TRUE );
+    Channel( sal_True );
+    // sal_Bool bChan = Channel( sal_True );
     SbiExpression* pExpr = new SbiExpression( this, SbOPERAND );
     /* AB 15.1.96: Keinen allgemeinen Ausdruck mehr zulassen
     SbiExpression* pExpr = new SbiExpression( this );
@@ -180,8 +180,8 @@ void SbiParser::LineInput()
 void SbiParser::Input()
 {
     aGen.Gen( _RESTART );
-    Channel( TRUE );
-    // BOOL bChan = Channel( TRUE );
+    Channel( sal_True );
+    // sal_Bool bChan = Channel( sal_True );
     SbiExpression* pExpr = new SbiExpression( this, SbOPERAND );
     /* ALT: Jetzt keinen allgemeinen Ausdruck mehr zulassen
     SbiExpression* pExpr = new SbiExpression( this );
-- 
cgit