summaryrefslogtreecommitdiff
path: root/basic/inc
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2012-09-04 18:42:23 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2012-09-05 10:40:17 +0900
commitcfa6f852429f96cf5bf5e9f7c03a9dacd320f4ba (patch)
tree41bde53018f16237e7fe67d9a1a49a2856f4dbd8 /basic/inc
parent1146b889325fd01f24c6aacf557d3940dd147936 (diff)
sal_Bool to bool
Change-Id: Iebed1c159606ab695b049032da5a3509e468fb91
Diffstat (limited to 'basic/inc')
-rw-r--r--basic/inc/basic/sbxvar.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/basic/inc/basic/sbxvar.hxx b/basic/inc/basic/sbxvar.hxx
index 63f5e21dc3cd..d3c47f1e8555 100644
--- a/basic/inc/basic/sbxvar.hxx
+++ b/basic/inc/basic/sbxvar.hxx
@@ -134,7 +134,7 @@ public:
sal_Bool IspChar() const { return sal_Bool( GetType() == SbxLPSTR ); }
sal_Bool IsNumeric() const;
sal_Bool IsNumericRTL() const; // #41692 Interface for Basic
- sal_Bool ImpIsNumeric( sal_Bool bOnlyIntntl ) const; // Implementation
+ sal_Bool ImpIsNumeric( bool bOnlyIntntl ) const; // Implementation
virtual SbxClassType GetClass() const;
virtual SbxDataType GetType() const;
@@ -194,7 +194,7 @@ public:
sal_Bool fillAutomationDecimal( com::sun::star::bridge::oleautomation::Decimal& rAutomationDec );
sal_Bool PutCurrency( const sal_Int64& );
// Interface for CDbl in Basic
- static SbxError ScanNumIntnl( const String& rSrc, double& nVal, sal_Bool bSingle = sal_False );
+ static SbxError ScanNumIntnl( const String& rSrc, double& nVal, bool bSingle = false );
sal_Bool PutObject( SbxBase* );