diff options
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/inc/shtabdlg.hxx | 2 | ||||
-rw-r--r-- | sc/source/ui/miscdlgs/shtabdlg.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/inc/shtabdlg.hxx b/sc/source/ui/inc/shtabdlg.hxx index 6ba02b6aed19..c7a12d3fe07b 100644 --- a/sc/source/ui/inc/shtabdlg.hxx +++ b/sc/source/ui/inc/shtabdlg.hxx @@ -44,7 +44,7 @@ public: const OString& nDlgHelpId, const OString& nLbHelpId ); /** Inserts a string into the ListBox. */ - void Insert( const OUString& rString, sal_Bool bSelected ); + void Insert( const OUString& rString, bool bSelected ); sal_uInt16 GetSelectEntryCount() const; OUString GetSelectEntry(sal_uInt16 nPos) const; diff --git a/sc/source/ui/miscdlgs/shtabdlg.cxx b/sc/source/ui/miscdlgs/shtabdlg.cxx index cc05f1f62def..247b50dee34d 100644 --- a/sc/source/ui/miscdlgs/shtabdlg.cxx +++ b/sc/source/ui/miscdlgs/shtabdlg.cxx @@ -57,7 +57,7 @@ void ScShowTabDlg::SetDescription( m_pLb->SetHelpId( sLbHelpId ); } -void ScShowTabDlg::Insert( const OUString& rString, sal_Bool bSelected ) +void ScShowTabDlg::Insert( const OUString& rString, bool bSelected ) { m_pLb->InsertEntry( rString ); if( bSelected ) |