summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-04-03 22:16:17 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-04-03 23:27:40 +0200
commitf2e19cc800025a9361bbea7d6b435ff649b09528 (patch)
tree6c69d307b61c24c66dd145df526ca707fc60ebb5
parentthis method is actually unused (diff)
downloadcore-f2e19cc800025a9361bbea7d6b435ff649b09528.tar.gz
core-f2e19cc800025a9361bbea7d6b435ff649b09528.zip
sal_Bool -> bool
Change-Id: I1225c972d806301ef5bd295b2b42145a8b2e7145
-rw-r--r--sfx2/source/bastyp/helper.cxx4
-rw-r--r--sfx2/source/inc/helper.hxx2
2 files changed, 3 insertions, 3 deletions
diff --git a/sfx2/source/bastyp/helper.cxx b/sfx2/source/bastyp/helper.cxx
index 4ee9d44c2e8b..6cc9c0f860f1 100644
--- a/sfx2/source/bastyp/helper.cxx
+++ b/sfx2/source/bastyp/helper.cxx
@@ -251,9 +251,9 @@ OUString SfxContentHelper::GetActiveHelpString( const OUString& rURL )
// -----------------------------------------------------------------------
-sal_Bool SfxContentHelper::IsHelpErrorDocument( const OUString& rURL )
+bool SfxContentHelper::IsHelpErrorDocument( const OUString& rURL )
{
- sal_Bool bRet = sal_False;
+ bool bRet = false;
try
{
::ucbhelper::Content aCnt( INetURLObject( rURL ).GetMainURL( INetURLObject::NO_DECODE ),
diff --git a/sfx2/source/inc/helper.hxx b/sfx2/source/inc/helper.hxx
index a228f2c9f93e..5e20e2245039 100644
--- a/sfx2/source/inc/helper.hxx
+++ b/sfx2/source/inc/helper.hxx
@@ -35,7 +35,7 @@ public:
static ::com::sun::star::uno::Sequence< ::rtl::OUString >
GetHelpTreeViewContents( const String& rURL );
static OUString GetActiveHelpString( const OUString& rURL );
- static sal_Bool IsHelpErrorDocument( const OUString& rURL );
+ static bool IsHelpErrorDocument( const OUString& rURL );
static sal_Int64 GetSize( const String& rContent );
};