summaryrefslogtreecommitdiff
path: root/ucb/source
diff options
context:
space:
mode:
authorAndras Timar <andras.timar@collabora.com>2013-12-20 11:25:37 +0100
committerAndras Timar <andras.timar@collabora.com>2013-12-20 15:55:00 +0100
commitb55259eeb549482477c57d854f3de72aff345edb (patch)
tree35e474b8458ae776a8455f4f78e73ae28c611180 /ucb/source
parent377ec698afc98a9a098b456f4ae3c694498df6a2 (diff)
typo fixes
Change-Id: Ia5f104bfd707bcf4e159c78ca2764c861fb0b6d9
Diffstat (limited to 'ucb/source')
-rw-r--r--ucb/source/ucp/hierarchy/hierarchycontent.cxx12
-rw-r--r--ucb/source/ucp/package/pkgcontent.cxx12
-rw-r--r--ucb/source/ucp/tdoc/tdoc_content.cxx12
-rw-r--r--ucb/source/ucp/webdav-neon/webdavcontent.cxx12
-rw-r--r--ucb/source/ucp/webdav/webdavcontent.cxx12
5 files changed, 30 insertions, 30 deletions
diff --git a/ucb/source/ucp/hierarchy/hierarchycontent.cxx b/ucb/source/ucp/hierarchy/hierarchycontent.cxx
index 4c1bd9f2a0cf..d15c90b6cd3e 100644
--- a/ucb/source/ucp/hierarchy/hierarchycontent.cxx
+++ b/ucb/source/ucp/hierarchy/hierarchycontent.cxx
@@ -928,7 +928,7 @@ uno::Reference< sdbc::XRow > HierarchyContent::getPropertyValues(
if ( nCount )
{
uno::Reference< beans::XPropertySet > xAdditionalPropSet;
- sal_Bool bTriedToGetAdditonalPropSet = sal_False;
+ sal_Bool bTriedToGetAdditionalPropSet = sal_False;
const beans::Property* pProps = rProperties.getConstArray();
for ( sal_Int32 n = 0; n < nCount; ++n )
@@ -971,14 +971,14 @@ uno::Reference< sdbc::XRow > HierarchyContent::getPropertyValues(
{
// Not a Core Property! Maybe it's an Additional Core Property?!
- if ( !bTriedToGetAdditonalPropSet && !xAdditionalPropSet.is() )
+ if ( !bTriedToGetAdditionalPropSet && !xAdditionalPropSet.is() )
{
xAdditionalPropSet
= uno::Reference< beans::XPropertySet >(
pProvider->getAdditionalPropertySet( rContentId,
sal_False ),
uno::UNO_QUERY );
- bTriedToGetAdditonalPropSet = sal_True;
+ bTriedToGetAdditionalPropSet = sal_True;
}
if ( xAdditionalPropSet.is() )
@@ -1097,7 +1097,7 @@ uno::Sequence< uno::Any > HierarchyContent::setPropertyValues(
sal_Int32 nCount = rValues.getLength();
uno::Reference< ucb::XPersistentPropertySet > xAdditionalPropSet;
- sal_Bool bTriedToGetAdditonalPropSet = sal_False;
+ sal_Bool bTriedToGetAdditionalPropSet = sal_False;
sal_Bool bExchange = sal_False;
OUString aOldTitle;
@@ -1250,10 +1250,10 @@ uno::Sequence< uno::Any > HierarchyContent::setPropertyValues(
{
// Not a Core Property! Maybe it's an Additional Core Property?!
- if ( !bTriedToGetAdditonalPropSet && !xAdditionalPropSet.is() )
+ if ( !bTriedToGetAdditionalPropSet && !xAdditionalPropSet.is() )
{
xAdditionalPropSet = getAdditionalPropertySet( sal_False );
- bTriedToGetAdditonalPropSet = sal_True;
+ bTriedToGetAdditionalPropSet = sal_True;
}
if ( xAdditionalPropSet.is() )
diff --git a/ucb/source/ucp/package/pkgcontent.cxx b/ucb/source/ucp/package/pkgcontent.cxx
index 34c5af5acd67..267bb5e87188 100644
--- a/ucb/source/ucp/package/pkgcontent.cxx
+++ b/ucb/source/ucp/package/pkgcontent.cxx
@@ -816,7 +816,7 @@ uno::Reference< sdbc::XRow > Content::getPropertyValues(
if ( nCount )
{
uno::Reference< beans::XPropertySet > xAdditionalPropSet;
- sal_Bool bTriedToGetAdditonalPropSet = sal_False;
+ sal_Bool bTriedToGetAdditionalPropSet = sal_False;
const beans::Property* pProps = rProperties.getConstArray();
for ( sal_Int32 n = 0; n < nCount; ++n )
@@ -889,14 +889,14 @@ uno::Reference< sdbc::XRow > Content::getPropertyValues(
{
// Not a Core Property! Maybe it's an Additional Core Property?!
- if ( !bTriedToGetAdditonalPropSet && !xAdditionalPropSet.is() )
+ if ( !bTriedToGetAdditionalPropSet && !xAdditionalPropSet.is() )
{
xAdditionalPropSet
= uno::Reference< beans::XPropertySet >(
rProvider->getAdditionalPropertySet( rContentId,
sal_False ),
uno::UNO_QUERY );
- bTriedToGetAdditonalPropSet = sal_True;
+ bTriedToGetAdditionalPropSet = sal_True;
}
if ( xAdditionalPropSet.is() )
@@ -1061,7 +1061,7 @@ uno::Sequence< uno::Any > Content::setPropertyValues(
sal_Int32 nCount = rValues.getLength();
uno::Reference< ucb::XPersistentPropertySet > xAdditionalPropSet;
- sal_Bool bTriedToGetAdditonalPropSet = sal_False;
+ sal_Bool bTriedToGetAdditionalPropSet = sal_False;
sal_Bool bExchange = sal_False;
sal_Bool bStore = sal_False;
OUString aNewTitle;
@@ -1313,10 +1313,10 @@ uno::Sequence< uno::Any > Content::setPropertyValues(
{
// Not a Core Property! Maybe it's an Additional Core Property?!
- if ( !bTriedToGetAdditonalPropSet && !xAdditionalPropSet.is() )
+ if ( !bTriedToGetAdditionalPropSet && !xAdditionalPropSet.is() )
{
xAdditionalPropSet = getAdditionalPropertySet( sal_False );
- bTriedToGetAdditonalPropSet = sal_True;
+ bTriedToGetAdditionalPropSet = sal_True;
}
if ( xAdditionalPropSet.is() )
diff --git a/ucb/source/ucp/tdoc/tdoc_content.cxx b/ucb/source/ucp/tdoc/tdoc_content.cxx
index 6a2acc742ade..639c0fffbdc0 100644
--- a/ucb/source/ucp/tdoc/tdoc_content.cxx
+++ b/ucb/source/ucp/tdoc/tdoc_content.cxx
@@ -945,7 +945,7 @@ uno::Reference< sdbc::XRow > Content::getPropertyValues(
if ( nCount )
{
uno::Reference< beans::XPropertySet > xAdditionalPropSet;
- sal_Bool bTriedToGetAdditonalPropSet = sal_False;
+ sal_Bool bTriedToGetAdditionalPropSet = sal_False;
const beans::Property* pProps = rProperties.getConstArray();
for ( sal_Int32 n = 0; n < nCount; ++n )
@@ -1003,14 +1003,14 @@ uno::Reference< sdbc::XRow > Content::getPropertyValues(
{
// Not a Core Property! Maybe it's an Additional Core Property?!
- if ( !bTriedToGetAdditonalPropSet && !xAdditionalPropSet.is() )
+ if ( !bTriedToGetAdditionalPropSet && !xAdditionalPropSet.is() )
{
xAdditionalPropSet
= uno::Reference< beans::XPropertySet >(
pProvider->getAdditionalPropertySet( rContentId,
sal_False ),
uno::UNO_QUERY );
- bTriedToGetAdditonalPropSet = sal_True;
+ bTriedToGetAdditionalPropSet = sal_True;
}
if ( xAdditionalPropSet.is() )
@@ -1150,7 +1150,7 @@ uno::Sequence< uno::Any > Content::setPropertyValues(
sal_Int32 nCount = rValues.getLength();
uno::Reference< ucb::XPersistentPropertySet > xAdditionalPropSet;
- sal_Bool bTriedToGetAdditonalPropSet = sal_False;
+ sal_Bool bTriedToGetAdditionalPropSet = sal_False;
sal_Bool bExchange = sal_False;
OUString aOldTitle;
@@ -1277,10 +1277,10 @@ uno::Sequence< uno::Any > Content::setPropertyValues(
{
// Not a Core Property! Maybe it's an Additional Core Property?!
- if ( !bTriedToGetAdditonalPropSet && !xAdditionalPropSet.is() )
+ if ( !bTriedToGetAdditionalPropSet && !xAdditionalPropSet.is() )
{
xAdditionalPropSet = getAdditionalPropertySet( sal_False );
- bTriedToGetAdditonalPropSet = sal_True;
+ bTriedToGetAdditionalPropSet = sal_True;
}
if ( xAdditionalPropSet.is() )
diff --git a/ucb/source/ucp/webdav-neon/webdavcontent.cxx b/ucb/source/ucp/webdav-neon/webdavcontent.cxx
index bff41ad5520b..ec4f694de00e 100644
--- a/ucb/source/ucp/webdav-neon/webdavcontent.cxx
+++ b/ucb/source/ucp/webdav-neon/webdavcontent.cxx
@@ -1158,7 +1158,7 @@ uno::Reference< sdbc::XRow > Content::getPropertyValues(
if ( nCount )
{
uno::Reference< beans::XPropertySet > xAdditionalPropSet;
- sal_Bool bTriedToGetAdditonalPropSet = sal_False;
+ sal_Bool bTriedToGetAdditionalPropSet = sal_False;
const beans::Property* pProps = rProperties.getConstArray();
for ( sal_Int32 n = 0; n < nCount; ++n )
@@ -1174,14 +1174,14 @@ uno::Reference< sdbc::XRow > Content::getPropertyValues(
else
{
// Process local Additional Properties.
- if ( !bTriedToGetAdditonalPropSet && !xAdditionalPropSet.is() )
+ if ( !bTriedToGetAdditionalPropSet && !xAdditionalPropSet.is() )
{
xAdditionalPropSet
= uno::Reference< beans::XPropertySet >(
rProvider->getAdditionalPropertySet( rContentId,
sal_False ),
uno::UNO_QUERY );
- bTriedToGetAdditonalPropSet = sal_True;
+ bTriedToGetAdditionalPropSet = sal_True;
}
if ( !xAdditionalPropSet.is() ||
@@ -1574,7 +1574,7 @@ uno::Sequence< uno::Any > Content::setPropertyValues(
std::vector< sal_Int32 > aProppatchPropsPositions;
uno::Reference< ucb::XPersistentPropertySet > xAdditionalPropSet;
- sal_Bool bTriedToGetAdditonalPropSet = sal_False;
+ sal_Bool bTriedToGetAdditionalPropSet = sal_False;
sal_Bool bExchange = sal_False;
OUString aNewTitle;
@@ -1754,12 +1754,12 @@ uno::Sequence< uno::Any > Content::setPropertyValues(
else
{
// Property value will be stored in local property store.
- if ( !bTriedToGetAdditonalPropSet &&
+ if ( !bTriedToGetAdditionalPropSet &&
!xAdditionalPropSet.is() )
{
xAdditionalPropSet
= getAdditionalPropertySet( sal_False );
- bTriedToGetAdditonalPropSet = sal_True;
+ bTriedToGetAdditionalPropSet = sal_True;
}
if ( xAdditionalPropSet.is() )
diff --git a/ucb/source/ucp/webdav/webdavcontent.cxx b/ucb/source/ucp/webdav/webdavcontent.cxx
index a5e7087e1a3c..52fdc1fd64d6 100644
--- a/ucb/source/ucp/webdav/webdavcontent.cxx
+++ b/ucb/source/ucp/webdav/webdavcontent.cxx
@@ -1265,7 +1265,7 @@ uno::Reference< sdbc::XRow > Content::getPropertyValues(
if ( nCount )
{
uno::Reference< beans::XPropertySet > xAdditionalPropSet;
- sal_Bool bTriedToGetAdditonalPropSet = sal_False;
+ sal_Bool bTriedToGetAdditionalPropSet = sal_False;
const beans::Property* pProps = rProperties.getConstArray();
for ( sal_Int32 n = 0; n < nCount; ++n )
@@ -1281,14 +1281,14 @@ uno::Reference< sdbc::XRow > Content::getPropertyValues(
else
{
// Process local Additional Properties.
- if ( !bTriedToGetAdditonalPropSet && !xAdditionalPropSet.is() )
+ if ( !bTriedToGetAdditionalPropSet && !xAdditionalPropSet.is() )
{
xAdditionalPropSet
= uno::Reference< beans::XPropertySet >(
rProvider->getAdditionalPropertySet( rContentId,
sal_False ),
uno::UNO_QUERY );
- bTriedToGetAdditonalPropSet = sal_True;
+ bTriedToGetAdditionalPropSet = sal_True;
}
if ( !xAdditionalPropSet.is() ||
@@ -1714,7 +1714,7 @@ uno::Sequence< uno::Any > Content::setPropertyValues(
std::vector< sal_Int32 > aProppatchPropsPositions;
uno::Reference< ucb::XPersistentPropertySet > xAdditionalPropSet;
- sal_Bool bTriedToGetAdditonalPropSet = sal_False;
+ sal_Bool bTriedToGetAdditionalPropSet = sal_False;
sal_Bool bExchange = sal_False;
OUString aNewTitle;
@@ -1892,12 +1892,12 @@ uno::Sequence< uno::Any > Content::setPropertyValues(
else
{
// Property value will be stored in local property store.
- if ( !bTriedToGetAdditonalPropSet &&
+ if ( !bTriedToGetAdditionalPropSet &&
!xAdditionalPropSet.is() )
{
xAdditionalPropSet
= getAdditionalPropertySet( sal_False );
- bTriedToGetAdditonalPropSet = sal_True;
+ bTriedToGetAdditionalPropSet = sal_True;
}
if ( xAdditionalPropSet.is() )