summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-04-15 05:10:29 +0200
committerThomas Arnhold <thomas@arnhold.org>2013-04-15 05:10:29 +0200
commit435f5e30c968ffd5761873f8b3f756949545ce72 (patch)
treeb7f1623723f23d141d7b6b0cada5d28523d53fdf /sfx2
parent60fbefc615f8931bf8b952293fc4eb4ac35dafd8 (diff)
fdo#60724 correct spelling
Change-Id: I7318a9f4f3410edf4dbe67bf08f31682fcb4edc7
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/inc/sfx2/viewsh.hxx2
-rw-r--r--sfx2/source/appl/appuno.cxx18
-rw-r--r--sfx2/source/doc/docfile.cxx8
3 files changed, 14 insertions, 14 deletions
diff --git a/sfx2/inc/sfx2/viewsh.hxx b/sfx2/inc/sfx2/viewsh.hxx
index 759394d77cf5..ad4c64cd5272 100644
--- a/sfx2/inc/sfx2/viewsh.hxx
+++ b/sfx2/inc/sfx2/viewsh.hxx
@@ -237,7 +237,7 @@ public:
*/
void SetCurrentDocument() const;
- /** get an XRenderable instance that can render this docuement
+ /** get an XRenderable instance that can render this document
*/
virtual com::sun::star::uno::Reference< com::sun::star::view::XRenderable > GetRenderable();
diff --git a/sfx2/source/appl/appuno.cxx b/sfx2/source/appl/appuno.cxx
index b70776104d35..6cbccc56b3de 100644
--- a/sfx2/source/appl/appuno.cxx
+++ b/sfx2/source/appl/appuno.cxx
@@ -265,7 +265,7 @@ void TransformParameters( sal_uInt16 nSlotId, const uno::Sequence<beans::Propert
#ifdef DBG_UTIL
else
{
- OStringBuffer aStr(RTL_CONSTASCII_STRINGPARAM("Property not convertable: "));
+ OStringBuffer aStr(RTL_CONSTASCII_STRINGPARAM("Property not convertible: "));
aStr.append(pSlot->pUnoName);
OSL_FAIL( aStr.getStr() );
}
@@ -317,7 +317,7 @@ void TransformParameters( sal_uInt16 nSlotId, const uno::Sequence<beans::Propert
#ifdef DBG_UTIL
else
{
- OStringBuffer aDbgStr(RTL_CONSTASCII_STRINGPARAM("Property not convertable: "));
+ OStringBuffer aDbgStr(RTL_CONSTASCII_STRINGPARAM("Property not convertible: "));
aDbgStr.append(pSlot->pUnoName);
OSL_FAIL( aDbgStr.getStr() );
}
@@ -391,7 +391,7 @@ void TransformParameters( sal_uInt16 nSlotId, const uno::Sequence<beans::Propert
#ifdef DBG_UTIL
else
{
- OStringBuffer aStr(RTL_CONSTASCII_STRINGPARAM("Property not convertable: "));
+ OStringBuffer aStr(RTL_CONSTASCII_STRINGPARAM("Property not convertible: "));
aStr.append(rArg.pName);
OSL_FAIL( aStr.getStr() );
}
@@ -420,7 +420,7 @@ void TransformParameters( sal_uInt16 nSlotId, const uno::Sequence<beans::Propert
#ifdef DBG_UTIL
else
{
- OStringBuffer aStr(RTL_CONSTASCII_STRINGPARAM("Property not convertable: "));
+ OStringBuffer aStr(RTL_CONSTASCII_STRINGPARAM("Property not convertible: "));
aStr.append(rArg.pName);
OSL_FAIL( aStr.getStr() );
}
@@ -457,7 +457,7 @@ void TransformParameters( sal_uInt16 nSlotId, const uno::Sequence<beans::Propert
// ... but it was not convertible
bRet = sal_False;
#ifdef DBG_UTIL
- OStringBuffer aDbgStr(RTL_CONSTASCII_STRINGPARAM("Property not convertable: "));
+ OStringBuffer aDbgStr(RTL_CONSTASCII_STRINGPARAM("Property not convertible: "));
aDbgStr.append(rArg.pName);
OSL_FAIL( aDbgStr.getStr() );
#endif
@@ -1333,7 +1333,7 @@ void TransformItems( sal_uInt16 nSlotId, const SfxItemSet& rSet, uno::Sequence<b
if ( !pItem->QueryValue( pValue[nActProp].Value ) )
{
OStringBuffer aStr(RTL_CONSTASCII_STRINGPARAM(
- "Item not convertable: "));
+ "Item not convertible: "));
aStr.append(static_cast<sal_Int32>(nSlotId));
OSL_FAIL(aStr.getStr());
}
@@ -1359,7 +1359,7 @@ void TransformItems( sal_uInt16 nSlotId, const SfxItemSet& rSet, uno::Sequence<b
aStr.append(static_cast<sal_Int32>(
pType->aAttrib[n-1].nAID));
aStr.append(RTL_CONSTASCII_STRINGPARAM(
- " not convertable in slot: "));
+ " not convertible in slot: "));
aStr.append(static_cast<sal_Int32>(nSlotId));
OSL_FAIL( aStr.getStr() );
}
@@ -1388,7 +1388,7 @@ void TransformItems( sal_uInt16 nSlotId, const SfxItemSet& rSet, uno::Sequence<b
if ( !pItem->QueryValue( pValue[nActProp++].Value ) )
{
OStringBuffer aStr(RTL_CONSTASCII_STRINGPARAM(
- "Item not convertable: "));
+ "Item not convertible: "));
aStr.append(static_cast<sal_Int32>(rArg.nSlotId));
OSL_FAIL(aStr.getStr());
}
@@ -1414,7 +1414,7 @@ void TransformItems( sal_uInt16 nSlotId, const SfxItemSet& rSet, uno::Sequence<b
aStr.append(static_cast<sal_Int32>(
rArg.pType->aAttrib[n-1].nAID));
aStr.append(RTL_CONSTASCII_STRINGPARAM(
- " not convertable in slot: "));
+ " not convertible in slot: "));
aStr.append(static_cast<sal_Int32>(rArg.nSlotId));
OSL_FAIL(aStr.getStr());
}
diff --git a/sfx2/source/doc/docfile.cxx b/sfx2/source/doc/docfile.cxx
index 79e32c374e08..8d22eb4fad31 100644
--- a/sfx2/source/doc/docfile.cxx
+++ b/sfx2/source/doc/docfile.cxx
@@ -755,7 +755,7 @@ sal_Bool SfxMedium::IsStorage()
OUString aURL;
if ( !::utl::LocalFileHelper::ConvertPhysicalNameToURL( pImp->m_aName, aURL ) )
{
- OSL_FAIL("Physical name not convertable!");
+ OSL_FAIL("Physical name not convertible!");
}
pImp->bIsStorage = SotStorage::IsStorageFile( aURL ) && !SotStorage::IsOLEStorage( aURL);
if ( !pImp->bIsStorage )
@@ -1801,7 +1801,7 @@ void SfxMedium::Transfer_Impl()
{
// makes sence only in case logic name is set
if ( !::utl::LocalFileHelper::ConvertPhysicalNameToURL( pImp->m_aName, aNameURL ) )
- OSL_FAIL( "The medium name is not convertable!\n" );
+ OSL_FAIL( "The medium name is not convertible!\n" );
}
if ( !aNameURL.isEmpty() && ( !pImp->m_eError || (pImp->m_eError & ERRCODE_WARNING_MASK) ) )
@@ -2318,7 +2318,7 @@ void SfxMedium::GetMedium_Impl()
{
if ( !::utl::LocalFileHelper::ConvertPhysicalNameToURL( pImp->m_aName, aFileName ) )
{
- OSL_FAIL("Physical name not convertable!");
+ OSL_FAIL("Physical name not convertible!");
}
}
else
@@ -2983,7 +2983,7 @@ SfxMedium::~SfxMedium()
OUString aTemp;
if ( !::utl::LocalFileHelper::ConvertPhysicalNameToURL( pImp->m_aName, aTemp ))
{
- OSL_FAIL("Physical name not convertable!");
+ OSL_FAIL("Physical name not convertible!");
}
if ( !::utl::UCBContentHelper::Kill( aTemp ) )