summaryrefslogtreecommitdiff
path: root/sc/source/ui/unoobj/afmtuno.cxx
diff options
context:
space:
mode:
authorJens Carl <j.carl43@gmx.de>2017-06-23 05:48:09 +0000
committerMichael Stahl <mstahl@redhat.com>2017-06-23 15:04:27 +0200
commitecddd5ee9cd4e1dc874a84f8846f938c0199b552 (patch)
treea4722ae9f2753886bb174c6a94673bb5ae18fe6f /sc/source/ui/unoobj/afmtuno.cxx
parent5e028ad5dccc6ff1a9250baf2196f7a2f235e314 (diff)
tdf#39468 Translate some random German comments/terms
Change-Id: I5f3b430fa317d7da13d47c21f1fec6c489b05522 Reviewed-on: https://gerrit.libreoffice.org/39141 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'sc/source/ui/unoobj/afmtuno.cxx')
-rw-r--r--sc/source/ui/unoobj/afmtuno.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/sc/source/ui/unoobj/afmtuno.cxx b/sc/source/ui/unoobj/afmtuno.cxx
index 1802478ef5d6..7d53c7313011 100644
--- a/sc/source/ui/unoobj/afmtuno.cxx
+++ b/sc/source/ui/unoobj/afmtuno.cxx
@@ -187,7 +187,7 @@ ScAutoFormatObj* ScAutoFormatsObj::GetObjectByIndex_Impl(sal_uInt16 nIndex)
if (nIndex < ScGlobal::GetOrCreateAutoFormat()->size())
return new ScAutoFormatObj(nIndex);
- return nullptr; // falscher Index
+ return nullptr; // wrong index
}
ScAutoFormatObj* ScAutoFormatsObj::GetObjectByName_Impl(const OUString& aName)
@@ -255,7 +255,7 @@ void SAL_CALL ScAutoFormatsObj::insertByName( const OUString& aName, const uno::
void SAL_CALL ScAutoFormatsObj::replaceByName( const OUString& aName, const uno::Any& aElement )
{
SolarMutexGuard aGuard;
- //! zusammenfassen?
+ //! combine?
removeByName( aName );
insertByName( aName, aElement );
}
@@ -270,8 +270,8 @@ void SAL_CALL ScAutoFormatsObj::removeByName( const OUString& aName )
{
pFormats->erase(it);
- //! Notify fuer andere Objekte
- pFormats->Save(); // sofort speichern
+ //! notify to other objects
+ pFormats->Save(); // save immediately
}
else
{
@@ -307,7 +307,7 @@ uno::Any SAL_CALL ScAutoFormatsObj::getByIndex( sal_Int32 nIndex )
uno::Type SAL_CALL ScAutoFormatsObj::getElementType()
{
SolarMutexGuard aGuard;
- return cppu::UnoType<container::XNamed>::get(); // muss zu getByIndex passen
+ return cppu::UnoType<container::XNamed>::get(); // must match getByIndex
}
sal_Bool SAL_CALL ScAutoFormatsObj::hasElements()
@@ -433,7 +433,7 @@ sal_Int32 SAL_CALL ScAutoFormatObj::getCount()
{
SolarMutexGuard aGuard;
if (IsInserted())
- return SC_AF_FIELD_COUNT; // immer 16 Elemente
+ return SC_AF_FIELD_COUNT; // always 16 elements
else
return 0;
}
@@ -453,7 +453,7 @@ uno::Any SAL_CALL ScAutoFormatObj::getByIndex( sal_Int32 nIndex )
uno::Type SAL_CALL ScAutoFormatObj::getElementType()
{
SolarMutexGuard aGuard;
- return cppu::UnoType<beans::XPropertySet>::get(); // muss zu getByIndex passen
+ return cppu::UnoType<beans::XPropertySet>::get(); // must match getByIndex
}
sal_Bool SAL_CALL ScAutoFormatObj::hasElements()
@@ -671,7 +671,7 @@ void SAL_CALL ScAutoFormatFieldObj::setPropertyValue(
}
if (bDone)
- //! Notify fuer andere Objekte?
+ //! Notify to other objects?
pFormats->SetSaveLater(true);
}
}