summaryrefslogtreecommitdiff
path: root/chart2/source/view/main/ChartView.cxx
diff options
context:
space:
mode:
authorMikhail Voytenko <mav@openoffice.org>2011-01-14 15:18:08 +0100
committerMikhail Voytenko <mav@openoffice.org>2011-01-14 15:18:08 +0100
commit3d6a5a98cda10e18dacd96028f2bf0ec0b478988 (patch)
tree9a25c82de4f09295c6407854b5cb27e8855efd26 /chart2/source/view/main/ChartView.cxx
parent071cddfecbb256b801274dc338d90c37d1389439 (diff)
removetooltypes01: #i112600# remove tooltypes from chart2
Diffstat (limited to 'chart2/source/view/main/ChartView.cxx')
-rw-r--r--chart2/source/view/main/ChartView.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/chart2/source/view/main/ChartView.cxx b/chart2/source/view/main/ChartView.cxx
index 390c1890154e..1714bac1e811 100644
--- a/chart2/source/view/main/ChartView.cxx
+++ b/chart2/source/view/main/ChartView.cxx
@@ -201,7 +201,7 @@ void SAL_CALL ChartView::initialize( const uno::Sequence< uno::Any >& aArguments
m_pDrawModelWrapper = ::boost::shared_ptr< DrawModelWrapper >( new DrawModelWrapper( m_xCC ) );
m_xShapeFactory = m_pDrawModelWrapper->getShapeFactory();
m_xDrawPage = m_pDrawModelWrapper->getMainDrawPage();
- StartListening( m_pDrawModelWrapper->getSdrModel(), FALSE /*bPreventDups*/ );
+ StartListening( m_pDrawModelWrapper->getSdrModel(), sal_False /*bPreventDups*/ );
// \--
}
}
@@ -210,7 +210,7 @@ ChartView::~ChartView()
{
if( m_pDrawModelWrapper.get() )
{
- EndListening( m_pDrawModelWrapper->getSdrModel(), FALSE /*bAllDups*/ );
+ EndListening( m_pDrawModelWrapper->getSdrModel(), sal_False /*bAllDups*/ );
::vos::OGuard aSolarGuard( Application::GetSolarMutex() );
m_pDrawModelWrapper.reset();
}
@@ -2599,7 +2599,7 @@ void ChartView::createShapes()
// /--
::vos::OGuard aSolarGuard( Application::GetSolarMutex());
// #i12587# support for shapes in chart
- m_pDrawModelWrapper->getSdrModel().EnableUndo( FALSE );
+ m_pDrawModelWrapper->getSdrModel().EnableUndo( sal_False );
m_pDrawModelWrapper->clearMainDrawPage();
// \--
}
@@ -2763,7 +2763,7 @@ void ChartView::createShapes()
if ( m_pDrawModelWrapper )
{
::vos::OGuard aSolarGuard( Application::GetSolarMutex() );
- m_pDrawModelWrapper->getSdrModel().EnableUndo( TRUE );
+ m_pDrawModelWrapper->getSdrModel().EnableUndo( sal_True );
}
#if OSL_DEBUG_LEVEL > 0