summaryrefslogtreecommitdiff
path: root/svtools/source/dialogs/roadmapwizard.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-05-08 11:42:56 +0200
committerNoel Grandin <noel@peralex.com>2014-05-08 11:48:13 +0200
commitb7d30cb50ede0752f1ee194655f925c77e06879a (patch)
treee9f1369976e5130ee20704344371060b0637a29a /svtools/source/dialogs/roadmapwizard.cxx
parent2d54aa1d22f404a1a36aaa97d3e3bf5024e89aed (diff)
svtools: sal_Bool->bool
Change-Id: Idd9a3ccf0eb6d14cec158daa17a6b2da625f7ffa
Diffstat (limited to 'svtools/source/dialogs/roadmapwizard.cxx')
-rw-r--r--svtools/source/dialogs/roadmapwizard.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svtools/source/dialogs/roadmapwizard.cxx b/svtools/source/dialogs/roadmapwizard.cxx
index c7c6666d4ba3..e6f81991c7dc 100644
--- a/svtools/source/dialogs/roadmapwizard.cxx
+++ b/svtools/source/dialogs/roadmapwizard.cxx
@@ -330,7 +330,7 @@ namespace svt
// determine up to which index (in the new path) we have to display the items
RoadmapTypes::ItemIndex nUpperStepBoundary = (RoadmapTypes::ItemIndex)rActivePath.size();
- sal_Bool bIncompletePath = sal_False;
+ bool bIncompletePath = false;
if ( !m_pImpl->bActivePathIsDefinite )
{
for ( Paths::const_iterator aPathPos = m_pImpl->aPaths.begin();
@@ -351,7 +351,7 @@ namespace svt
// the path conflicts with our new path -> don't activate the
// *complete* new path, but only up to the step which is unambiguous
nUpperStepBoundary = nDivergenceIndex;
- bIncompletePath = sal_True;
+ bIncompletePath = true;
}
}
@@ -538,7 +538,7 @@ namespace svt
return 0L;
}
- sal_Bool bResult = sal_True;
+ bool bResult = true;
if ( nNewIndex > nCurrentIndex )
{
bResult = skipUntil( (WizardState)nCurItemId );