From 6aa35db39311dcd7965c9c9c21fcf4143a1f9b43 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 25 Apr 2014 14:00:35 +0200 Subject: sw: sal_Bool->bool Change-Id: I324a0ffde2ddcca105451c19e7aadcfad15211d8 --- sw/inc/prtopt.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sw/inc/prtopt.hxx') diff --git a/sw/inc/prtopt.hxx b/sw/inc/prtopt.hxx index d7397b3575d7..a304772344e7 100644 --- a/sw/inc/prtopt.hxx +++ b/sw/inc/prtopt.hxx @@ -24,16 +24,16 @@ class SwPrintOptions : public SwPrintData, public utl::ConfigItem { - sal_Bool bIsWeb; + bool bIsWeb; com::sun::star::uno::Sequence GetPropertyNames(); public: - SwPrintOptions(sal_Bool bWeb); + SwPrintOptions(bool bWeb); virtual ~SwPrintOptions(); virtual void Commit() SAL_OVERRIDE; virtual void Notify( const ::com::sun::star::uno::Sequence< OUString >& aPropertyNames ) SAL_OVERRIDE; - virtual void doSetModified( ) SAL_OVERRIDE { bModified = sal_True; SetModified();} + virtual void doSetModified( ) SAL_OVERRIDE { bModified = true; SetModified();} SwPrintOptions& operator=(const SwPrintData& rData) { -- cgit