diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-17 14:02:07 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-18 10:07:58 +0200 |
commit | 788b42b384d6a0796ad076f19be5551971fdf4f0 (patch) | |
tree | 0779d29301bf91a3c824e7b4ad8565e4e0caaa89 /sc/source/ui/inc/drawview.hxx | |
parent | d858c06847edfbde900e1fc216bd7d7c65eeece2 (diff) |
sal_Bool->bool
Change-Id: I0dfcf547944529d04cbabc3026c1e088e39b99f8
Diffstat (limited to 'sc/source/ui/inc/drawview.hxx')
-rw-r--r-- | sc/source/ui/inc/drawview.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sc/source/ui/inc/drawview.hxx b/sc/source/ui/inc/drawview.hxx index 419749deabf2..2b7100a70e41 100644 --- a/sc/source/ui/inc/drawview.hxx +++ b/sc/source/ui/inc/drawview.hxx @@ -41,7 +41,7 @@ class ScDrawView: public FmFormView Fraction aScaleY; SdrDropMarkerOverlay* pDropMarker; SdrObject* pDropMarkObj; - sal_Bool bInConstruct; + bool bInConstruct; void Construct(); void UpdateBrowser(); @@ -90,7 +90,7 @@ public: void InvalidateAttribs(); void InvalidateDrawTextAttrs(); - sal_Bool BeginDrag( Window* pWindow, const Point& rStartPos ); + bool BeginDrag( Window* pWindow, const Point& rStartPos ); void DoCut(); void DoCopy(); @@ -115,7 +115,7 @@ public: void SetMarkedOriginalSize(); - sal_Bool SelectObject( const OUString& rName ); + bool SelectObject( const OUString& rName ); bool HasMarkedControl() const; bool HasMarkedInternal() const; @@ -147,8 +147,8 @@ public: ::com::sun::star::uno::Reference< ::com::sun::star::datatransfer::XTransferable > CopyToTransferable(); SdrObject* GetObjectByName(const OUString& rName); - sal_Bool GetObjectIsMarked( SdrObject * pObject ); - sal_Bool SelectCurrentViewObject( const OUString& rName ); + bool GetObjectIsMarked( SdrObject * pObject ); + bool SelectCurrentViewObject( const OUString& rName ); // #i123922# helper which checks if a Graphic may be appied to an existing // SdrObject; if it's a SdrGrafObj the fill will be replaced. If it's a @@ -160,7 +160,7 @@ public: const OUString& rFile, const OUString& rFilter); - static void CheckOle( const SdrMarkList& rMarkList, sal_Bool& rAnyOle, sal_Bool& rOneOle ); + static void CheckOle( const SdrMarkList& rMarkList, bool& rAnyOle, bool& rOneOle ); virtual void SyncForGrid( SdrObject* pObj ); }; |