summaryrefslogtreecommitdiff
path: root/include/editeng
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-26 09:03:59 +0200
committerNoel Grandin <noel@peralex.com>2014-02-27 12:30:28 +0200
commitab49749dfc405752230fb7c2a0416f37e55be032 (patch)
tree4cf1090a048031a27f6c7034969478dcf1a4814f /include/editeng
parent4941dc5890370879a4a998164db9e983ef758972 (diff)
editeng: sal_Bool->bool
Change-Id: Ibce9442e46dffbfb21873bb64fbc851ad761b4dc
Diffstat (limited to 'include/editeng')
-rw-r--r--include/editeng/prntitem.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/editeng/prntitem.hxx b/include/editeng/prntitem.hxx
index c01eb89ad19b..83e1596c7b4b 100644
--- a/include/editeng/prntitem.hxx
+++ b/include/editeng/prntitem.hxx
@@ -38,7 +38,7 @@ class EDITENG_DLLPUBLIC SvxPrintItem : public SfxBoolItem
public:
TYPEINFO();
- explicit SvxPrintItem( const sal_uInt16 nId , const sal_Bool bPrt = sal_True );
+ explicit SvxPrintItem( const sal_uInt16 nId , const bool bPrt = true );
inline SvxPrintItem &operator=( const SvxPrintItem &rCpy );
// "pure virtual Methods" from SfxPoolItem
@@ -52,7 +52,7 @@ public:
OUString &rText, const IntlWrapper * = 0 ) const;
};
-inline SvxPrintItem::SvxPrintItem( const sal_uInt16 nId, const sal_Bool bPrt )
+inline SvxPrintItem::SvxPrintItem( const sal_uInt16 nId, const bool bPrt )
: SfxBoolItem( nId, bPrt )
{}