summaryrefslogtreecommitdiff
path: root/chart2/source
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-24 15:42:28 +0200
committerNoel Grandin <noel@peralex.com>2014-03-25 14:32:56 +0200
commit436cd900956b5fd0b6583954c002f8c28ca32698 (patch)
tree00bf0fb7c6daa0041670ce5209e5912780520a66 /chart2/source
parentc849d750eb751d3f2b99d23cca1c8c08672ff379 (diff)
svtools: sal_Bool->bool
Change-Id: Ifd3e643dbc6755839ad4af73ae141fd115ddb4f4
Diffstat (limited to 'chart2/source')
-rw-r--r--chart2/source/controller/dialogs/tp_DataSource.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/chart2/source/controller/dialogs/tp_DataSource.cxx b/chart2/source/controller/dialogs/tp_DataSource.cxx
index 9e2a4532558e..aa150518affa 100644
--- a/chart2/source/controller/dialogs/tp_DataSource.cxx
+++ b/chart2/source/controller/dialogs/tp_DataSource.cxx
@@ -377,7 +377,7 @@ void DataSourceTabPage::updateControlsFromDialogModel()
void DataSourceTabPage::fillSeriesListBox()
{
- m_pLB_SERIES->SetUpdateMode( sal_False );
+ m_pLB_SERIES->SetUpdateMode( false );
Reference< XDataSeries > xSelected;
SeriesEntry * pEntry = dynamic_cast< SeriesEntry * >( m_pLB_SERIES->FirstSelected());
@@ -429,7 +429,7 @@ void DataSourceTabPage::fillSeriesListBox()
if( bHasSelectedEntry && pSelectedEntry )
m_pLB_SERIES->Select( pSelectedEntry );
- m_pLB_SERIES->SetUpdateMode( sal_True );
+ m_pLB_SERIES->SetUpdateMode( true );
}
void DataSourceTabPage::fillRoleListBox()
@@ -451,7 +451,7 @@ void DataSourceTabPage::fillRoleListBox()
pSeriesEntry->m_xChartType ));
// fill role list
- m_pLB_ROLE->SetUpdateMode( sal_False );
+ m_pLB_ROLE->SetUpdateMode( false );
m_pLB_ROLE->Clear();
m_pLB_ROLE->RemoveSelection();
@@ -469,7 +469,7 @@ void DataSourceTabPage::fillRoleListBox()
m_pLB_ROLE->Select( m_pLB_ROLE->GetEntry( nRoleIndex ));
}
- m_pLB_ROLE->SetUpdateMode( sal_True );
+ m_pLB_ROLE->SetUpdateMode( true );
if(pSeriesEntry->m_xChartType
->getSupportedPropertyRoles().getLength() == 0)