summaryrefslogtreecommitdiffstats
path: root/svx/source/dialog
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-10 11:09:59 +0200
committerNoel Grandin <noel@peralex.com>2014-03-11 08:18:24 +0200
commit6c97bc47177adc1c51f69f17e77b9fe2aeade122 (patch)
treef0ae47f9be3c2a72b3b197681ca65644bf82ecfe /svx/source/dialog
parentsvx: sal_Bool->bool (diff)
downloadcore-6c97bc47177adc1c51f69f17e77b9fe2aeade122.tar.gz
core-6c97bc47177adc1c51f69f17e77b9fe2aeade122.zip
svx: sal_Bool->bool
Change-Id: I78da39fc553b2e5040ee6665377ea51a1c4d04d7
Diffstat (limited to 'svx/source/dialog')
-rw-r--r--svx/source/dialog/contwnd.cxx6
-rw-r--r--svx/source/dialog/graphctl.cxx12
-rw-r--r--svx/source/dialog/imapwnd.cxx8
3 files changed, 13 insertions, 13 deletions
diff --git a/svx/source/dialog/contwnd.cxx b/svx/source/dialog/contwnd.cxx
index ab9b980452e2..7ebde92e253b 100644
--- a/svx/source/dialog/contwnd.cxx
+++ b/svx/source/dialog/contwnd.cxx
@@ -85,7 +85,7 @@ void ContourWindow::SetPolyPolygon( const PolyPolygon& rPolyPoly )
if ( nPolyCount )
{
pView->MarkAll();
- pView->CombineMarkedObjects( sal_False );
+ pView->CombineMarkedObjects( false );
}
pModel->SetChanged( false );
@@ -123,13 +123,13 @@ void ContourWindow::InitSdrModel()
aSet.Put( XFillColorItem( "", TRANSCOL ) );
aSet.Put( XFillTransparenceItem( 50 ) );
pView->SetAttributes( aSet );
- pView->SetFrameDragSingles( sal_True );
+ pView->SetFrameDragSingles( true );
}
void ContourWindow::SdrObjCreated( const SdrObject& )
{
pView->MarkAll();
- pView->CombineMarkedObjects( sal_False );
+ pView->CombineMarkedObjects( false );
}
bool ContourWindow::IsContourChanged() const
diff --git a/svx/source/dialog/graphctl.cxx b/svx/source/dialog/graphctl.cxx
index d0a769ba58c9..aa8d603c2260 100644
--- a/svx/source/dialog/graphctl.cxx
+++ b/svx/source/dialog/graphctl.cxx
@@ -163,11 +163,11 @@ void GraphCtrl::InitSdrModel()
// Creating a View
pView = new GraphCtrlView( pModel, this );
pView->SetWorkArea( Rectangle( Point(), aGraphSize ) );
- pView->EnableExtendedMouseEventDispatcher( sal_True );
+ pView->EnableExtendedMouseEventDispatcher( true );
pView->ShowSdrPage(pView->GetModel()->GetPage(0));
- pView->SetFrameDragSingles( sal_True );
+ pView->SetFrameDragSingles( true );
pView->SetMarkedPointsSmooth( SDRPATHSMOOTH_SYMMETRIC );
- pView->SetEditMode( sal_True );
+ pView->SetEditMode( true );
// #i72889# set neeeded flags
pView->SetPagePaintingAllowed(false);
@@ -394,7 +394,7 @@ void GraphCtrl::KeyInput( const KeyEvent& rKEvt )
{
// mark last object
pView->UnmarkAllObj();
- pView->MarkNextObj(sal_False);
+ pView->MarkNextObj(false);
bProc = true;
}
@@ -406,7 +406,7 @@ void GraphCtrl::KeyInput( const KeyEvent& rKEvt )
if ( aCode.IsMod1() )
{
pView->UnmarkAllObj();
- pView->MarkNextObj(sal_True);
+ pView->MarkNextObj(true);
bProc = true;
}
@@ -528,7 +528,7 @@ void GraphCtrl::KeyInput( const KeyEvent& rKEvt )
if(!bWasNoSnap)
((SdrDragStat&)rDragStat).SetNoSnap(true);
if(bWasSnapEnabled)
- pView->SetSnapEnabled(sal_False);
+ pView->SetSnapEnabled(false);
pView->MovAction(aEndPoint);
pView->EndDragObj();
diff --git a/svx/source/dialog/imapwnd.cxx b/svx/source/dialog/imapwnd.cxx
index bd7e209c46f4..d048f8c16d7e 100644
--- a/svx/source/dialog/imapwnd.cxx
+++ b/svx/source/dialog/imapwnd.cxx
@@ -279,7 +279,7 @@ void IMapWindow::InitSdrModel()
aSet.Put( XFillColorItem( "", TRANSCOL ) );
aSet.Put( XFillTransparenceItem( 50 ) );
pView->SetAttributes( aSet );
- pView->SetFrameDragSingles( sal_True );
+ pView->SetFrameDragSingles( true );
}
void IMapWindow::SdrObjCreated( const SdrObject& rObj )
@@ -591,7 +591,7 @@ void IMapWindow::SetCurrentObjState( sal_Bool bActive )
aSet.Put( XLineColorItem( "", Color( COL_BLACK ) ) );
}
- pView->SetAttributes( aSet, sal_False );
+ pView->SetAttributes( aSet, false );
}
}
@@ -816,7 +816,7 @@ void IMapWindow::SelectFirstObject()
{
GrabFocus();
pView->UnmarkAllObj();
- pView->MarkNextObj(sal_True);
+ pView->MarkNextObj(true);
}
}
@@ -825,7 +825,7 @@ void IMapWindow::StartPolyEdit()
GrabFocus();
if( !pView->AreObjectsMarked() )
- pView->MarkNextObj(sal_True);
+ pView->MarkNextObj(true);
const SdrHdlList& rHdlList = pView->GetHdlList();
SdrHdl* pHdl = rHdlList.GetFocusHdl();