summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/ext/ucpext_content.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/ucp/ext/ucpext_content.cxx')
-rw-r--r--ucb/source/ucp/ext/ucpext_content.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/ucb/source/ucp/ext/ucpext_content.cxx b/ucb/source/ucp/ext/ucpext_content.cxx
index ad3290962a92..2e5b7658a717 100644
--- a/ucb/source/ucp/ext/ucpext_content.cxx
+++ b/ucb/source/ucp/ext/ucpext_content.cxx
@@ -417,11 +417,11 @@ namespace ucb { namespace ucp { namespace ext
}
else if ( rProp.Name == "IsDocument" )
{
- xRow->appendBoolean( rProp, sal_False );
+ xRow->appendBoolean( rProp, false );
}
else if ( rProp.Name == "IsFolder" )
{
- xRow->appendBoolean( rProp, sal_True );
+ xRow->appendBoolean( rProp, true );
}
else
{
@@ -447,12 +447,12 @@ namespace ucb { namespace ucp { namespace ext
-1,
getCppuBooleanType(),
PropertyAttribute::BOUND | PropertyAttribute::READONLY ),
- sal_False );
+ false );
xRow->appendBoolean( Property( OUString("IsFolder"),
-1,
getCppuBooleanType(),
PropertyAttribute::BOUND | PropertyAttribute::READONLY ),
- sal_True );
+ true );
}
return Reference< XRow >( xRow.get() );