diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-05 14:30:25 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-11 08:18:18 +0200 |
commit | 729c93c12f3a05bc3afe9a94bbd0a5113a9ff758 (patch) | |
tree | e34f1ea9b99a69e86c2191cd5882a6b25f1604ab /svx/source/dialog | |
parent | c72ce293de07e2c8f13a3565fdd681773dc51144 (diff) |
svx: sal_Bool->bool
Change-Id: Ieb21d01fef7b25fc3b6326108d451fe239c9b461
Diffstat (limited to 'svx/source/dialog')
-rw-r--r-- | svx/source/dialog/svxbmpnumvalueset.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/dialog/svxbmpnumvalueset.cxx b/svx/source/dialog/svxbmpnumvalueset.cxx index 00e9c7e96379..161ca7536639 100644 --- a/svx/source/dialog/svxbmpnumvalueset.cxx +++ b/svx/source/dialog/svxbmpnumvalueset.cxx @@ -403,7 +403,7 @@ void SvxNumValueSet::init(sal_uInt16 nType) { aLineColor = COL_LIGHTGRAY; nPageType = nType; - bHTMLMode = sal_False; + bHTMLMode = false; pVDev = NULL; SetColCount( 4 ); @@ -474,7 +474,7 @@ extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeSvxBmpNumValueSet(Window *p void SvxBmpNumValueSet::init() { SvxNumValueSet::init(NUM_PAGETYPE_BMP); - bGrfNotFound = sal_False; + bGrfNotFound = false; GalleryExplorer::BeginLocking(GALLERY_THEME_BULLETS); SetStyle( GetStyle() | WB_VSCROLL ); SetLineCount( 3 ); @@ -505,7 +505,7 @@ void SvxBmpNumValueSet::UserDraw( const UserDrawEvent& rUDEvt ) if(!GalleryExplorer::GetGraphicObj( GALLERY_THEME_BULLETS, nItemId - 1, &aGraphic, NULL)) { - bGrfNotFound = sal_True; + bGrfNotFound = true; } else { @@ -524,7 +524,7 @@ IMPL_LINK_NOARG(SvxBmpNumValueSet, FormatHdl_Impl) // only when a graphics was not there, it needs to be formatted if(bGrfNotFound) { - bGrfNotFound = sal_False; + bGrfNotFound = false; Format(); } Invalidate(); |