summaryrefslogtreecommitdiffstats
path: root/include/svx/numvset.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-05 14:30:25 +0200
committerNoel Grandin <noel@peralex.com>2014-03-11 08:18:18 +0200
commit729c93c12f3a05bc3afe9a94bbd0a5113a9ff758 (patch)
treee34f1ea9b99a69e86c2191cd5882a6b25f1604ab /include/svx/numvset.hxx
parentsvx: sal_Bool->bool (diff)
downloadcore-729c93c12f3a05bc3afe9a94bbd0a5113a9ff758.tar.gz
core-729c93c12f3a05bc3afe9a94bbd0a5113a9ff758.zip
svx: sal_Bool->bool
Change-Id: Ieb21d01fef7b25fc3b6326108d451fe239c9b461
Diffstat (limited to 'include/svx/numvset.hxx')
-rw-r--r--include/svx/numvset.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/svx/numvset.hxx b/include/svx/numvset.hxx
index c8da38bf91d5..a9db528dbc08 100644
--- a/include/svx/numvset.hxx
+++ b/include/svx/numvset.hxx
@@ -49,8 +49,8 @@ struct SvxBmpItemInfo
class SVX_DLLPUBLIC SvxNumValueSet : public ValueSet
{
Color aLineColor;
- sal_uInt16 nPageType;
- sal_Bool bHTMLMode;
+ sal_uInt16 nPageType;
+ bool bHTMLMode;
Rectangle aOrgRect;
VirtualDevice* pVDev;
@@ -72,7 +72,7 @@ class SVX_DLLPUBLIC SvxNumValueSet : public ValueSet
virtual void UserDraw( const UserDrawEvent& rUDEvt );
- void SetHTMLMode(sal_Bool bSet) {bHTMLMode = bSet;}
+ void SetHTMLMode(bool bSet) {bHTMLMode = bSet;}
void SetNumberingSettings(
const com::sun::star::uno::Sequence<
com::sun::star::uno::Sequence<
@@ -92,15 +92,15 @@ class SVX_DLLPUBLIC SvxBmpNumValueSet : public SvxNumValueSet
{
OUString sBullets;
Timer aFormatTimer;
- sal_Bool bGrfNotFound;
+ bool bGrfNotFound;
void init();
protected:
DECL_LINK(FormatHdl_Impl, void *);
- void SetGrfNotFound(sal_Bool bSet) {bGrfNotFound = bSet;}
- sal_Bool IsGrfNotFound()const {return bGrfNotFound;}
+ void SetGrfNotFound(bool bSet) {bGrfNotFound = bSet;}
+ bool IsGrfNotFound()const {return bGrfNotFound;}
Timer& GetFormatTimer() {return aFormatTimer;}