summaryrefslogtreecommitdiff
path: root/reportdesign/inc/RptObject.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-05-02 08:38:50 +0200
committerNoel Grandin <noel@peralex.com>2014-05-02 08:49:23 +0200
commite23c98d713ababb72de0616831a2abe0e48387f5 (patch)
treefaf799c4dad34949c7ac50f4ddad5b1d94bb2375 /reportdesign/inc/RptObject.hxx
parent17dcf76ef87c15b8b83465a7c29b96dc2d05cde9 (diff)
reportdesign: sal_Bool->bool
Change-Id: I7a269dbf163f4c839b6c553c7b096185fe2f8a01
Diffstat (limited to 'reportdesign/inc/RptObject.hxx')
-rw-r--r--reportdesign/inc/RptObject.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/reportdesign/inc/RptObject.hxx b/reportdesign/inc/RptObject.hxx
index 057dfb76d102..76a544f1a72d 100644
--- a/reportdesign/inc/RptObject.hxx
+++ b/reportdesign/inc/RptObject.hxx
@@ -83,14 +83,14 @@ protected:
::com::sun::star::uno::Reference< ::com::sun::star::report::XSection> m_xSection;
::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > m_xKeepShapeAlive;
OUString m_sComponentName;
- sal_Bool m_bIsListening;
+ bool m_bIsListening;
OObjectBase(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XReportComponent>& _xComponent);
OObjectBase(const OUString& _sComponentName);
virtual ~OObjectBase();
- inline sal_Bool isListening() const { return m_bIsListening; }
+ inline bool isListening() const { return m_bIsListening; }
void SetPropsFromRect(const Rectangle& _rRect);
@@ -109,12 +109,12 @@ private:
public:
void StartListening();
- void EndListening(sal_Bool bRemoveListener = sal_True);
+ void EndListening(bool bRemoveListener = true);
// PropertyChangeListener
virtual void _propertyChange( const ::com::sun::star::beans::PropertyChangeEvent& evt ) throw(::com::sun::star::uno::RuntimeException);
virtual void initializeOle() {}
- sal_Bool supportsService( const OUString& _sServiceName ) const;
+ bool supportsService( const OUString& _sServiceName ) const;
::com::sun::star::uno::Reference< ::com::sun::star::report::XReportComponent> getReportComponent() const;
virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet> getAwtComponent();
@@ -261,7 +261,7 @@ public:
/** creates the m_xMediator when it doesn't already exist.
@param _bReverse when set to <TRUE/> then the properties from the uno control will be copied into report control
*/
- void CreateMediator(sal_Bool _bReverse = sal_False);
+ void CreateMediator(bool _bReverse = false);
virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet> getAwtComponent() SAL_OVERRIDE;