diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-11 14:06:38 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-12 09:01:08 +0200 |
commit | 3876dcbf859811d618e6fd30b755d03798ef2ff9 (patch) | |
tree | 1510a7235f3a35bc3efa4f4f383ae9ae7c51e091 | |
parent | 11679c2c20241b6b3f6f8982b18c822e978ee76b (diff) |
sal_Bool->bool
Change-Id: Ib952b18bff75cf7ea1257a53ac378c064076dfea
-rw-r--r-- | sc/inc/editsrc.hxx | 2 | ||||
-rw-r--r-- | sc/source/ui/unoobj/editsrc.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sc/inc/editsrc.hxx b/sc/inc/editsrc.hxx index cfb9d3ef22a1..95aa54155823 100644 --- a/sc/inc/editsrc.hxx +++ b/sc/inc/editsrc.hxx @@ -99,7 +99,7 @@ private: ScAddress aCellPos; ScEditEngineDefaulter* pEditEngine; SvxEditEngineForwarder* pForwarder; - sal_Bool bDataValid; + bool bDataValid; SdrObject* GetCaptionObj(); public: diff --git a/sc/source/ui/unoobj/editsrc.cxx b/sc/source/ui/unoobj/editsrc.cxx index b48ae1ba33cd..50adbf480c43 100644 --- a/sc/source/ui/unoobj/editsrc.cxx +++ b/sc/source/ui/unoobj/editsrc.cxx @@ -167,7 +167,7 @@ SvxTextForwarder* ScAnnotationEditSource::GetTextForwarder() if ( const EditTextObject* pEditObj = pNote->GetEditTextObject() ) pEditEngine->SetText( *pEditObj ); // incl. Umbrueche - bDataValid = sal_True; + bDataValid = true; return pForwarder; } |