diff options
author | Noel Grandin <noel@peralex.com> | 2014-01-17 10:50:02 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-01-17 13:43:50 +0200 |
commit | 4a7ad6083f448daf4dcae9a2396b1c748dc06705 (patch) | |
tree | 20b2ce9f1e8d1246b88a7bae20b1905a3f5c1833 /sc | |
parent | ed5065d8b080bfaf51ea1232cebf3ff72af1e640 (diff) |
sal_Bool->bool
Change-Id: I3b458d7dd89b74f54a74248e713b8eddef6f7347
Diffstat (limited to 'sc')
-rw-r--r-- | sc/inc/afmtuno.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/inc/afmtuno.hxx b/sc/inc/afmtuno.hxx index 9ca1827cd3a8..d6a35e5e4ec5 100644 --- a/sc/inc/afmtuno.hxx +++ b/sc/inc/afmtuno.hxx @@ -136,7 +136,7 @@ class ScAutoFormatObj : public ::cppu::WeakImplHelper6< { private: SfxItemPropertySet aPropSet; - sal_uInt16 nFormatIndex; + sal_uInt16 nFormatIndex; ScAutoFormatFieldObj* GetObjectByIndex_Impl(sal_uInt16 nIndex); @@ -147,7 +147,7 @@ public: virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ); // per getImplementation gerufen: - sal_Bool IsInserted() const { return nFormatIndex != SC_AFMTOBJ_INVALID; } + bool IsInserted() const { return nFormatIndex != SC_AFMTOBJ_INVALID; } void InitFormat( sal_uInt16 nNewIndex ); // XIndexAccess |