summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-18 15:20:27 +0200
committerNoel Grandin <noel@peralex.com>2014-02-19 13:05:05 +0200
commit9d03b8e998d219dfa0bdd05891493d79c420e96f (patch)
tree3336f10ed84b5feee8e0e355630787ec23824c5d
parent4f526c813f8ae6a5cd73b806c182a0aa54cac26e (diff)
sal_Bool->bool
Change-Id: Ifc8520239c95433218f2676106759f8ee809d42c
-rw-r--r--sc/source/ui/inc/shtabdlg.hxx2
-rw-r--r--sc/source/ui/miscdlgs/shtabdlg.cxx2
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 )