summaryrefslogtreecommitdiff
path: root/sw/source/core/unocore/unodraw.cxx
diff options
context:
space:
mode:
authorPhilipp Riemer <ruderphilipp@gmail.com>2014-07-13 14:28:55 +0200
committerPhilipp Riemer <ruderphilipp@gmail.com>2014-07-13 17:55:08 +0200
commit6fe539ceeeb38d44c880ba09287820e69e2c4d34 (patch)
tree213f7771d5a57ea0016a95e33e8e60277bf0cb02 /sw/source/core/unocore/unodraw.cxx
parent25b18c6fe055035a1d5f835cf178acd55a585811 (diff)
fdo#39468: Translate German comments in sw/source/core/
Change-Id: Ib48b281feccd4684571768ca2be6ecca23afbf55
Diffstat (limited to 'sw/source/core/unocore/unodraw.cxx')
-rw-r--r--sw/source/core/unocore/unodraw.cxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/sw/source/core/unocore/unodraw.cxx b/sw/source/core/unocore/unodraw.cxx
index 473aa361e8f3..e1e89f9f4aca 100644
--- a/sw/source/core/unocore/unodraw.cxx
+++ b/sw/source/core/unocore/unodraw.cxx
@@ -297,7 +297,7 @@ uno::Reference< uno::XInterface > SwFmDrawPage::GetInterface( SdrObject* pObj
SdrObject* SwFmDrawPage::_CreateSdrObject( const uno::Reference< drawing::XShape > & xShape )
throw (uno::RuntimeException, std::exception)
{
- //TODO: stimmt das so - kann die Methode weg?
+ //FIXME: just a redirect call - can this method be deleted?
return SvxFmDrawPage::_CreateSdrObject( xShape );
}
@@ -604,11 +604,11 @@ void SwXDrawPage::add(const uno::Reference< drawing::XShape > & xShape)
uno::Reference< uno::XAggregation > xAgg = pShape->GetAggregationInterface();
- OSL_ENSURE(pSvxShape, "warum gibt es hier kein SvxShape?");
- //diese Position ist auf jeden Fall in 1/100 mm
+ OSL_ENSURE(pSvxShape, "Why is here no SvxShape?");
+ // this position is definitely in 1/100 mm
awt::Point aMM100Pos(pSvxShape->getPosition());
- //jetzt noch die Properties aus dem SwShapeDescriptor_Impl auswerten
+ // now evaluate the properties of SwShapeDescriptor_Impl
SwShapeDescriptor_Impl* pDesc = pShape->GetDescImpl();
SfxItemSet aSet( pDoc->GetAttrPool(), RES_FRMATR_BEGIN,
@@ -619,7 +619,7 @@ void SwXDrawPage::add(const uno::Reference< drawing::XShape > & xShape)
{
if(pDesc->GetSurround())
aSet.Put( *pDesc->GetSurround());
- //die Items sind schon in Twip gesetzt
+ // all items are already in Twip
if(pDesc->GetLRSpace())
{
aSet.Put(*pDesc->GetLRSpace());
@@ -755,9 +755,9 @@ uno::Reference< drawing::XShapeGroup > SwXDrawPage::group(const uno::Reference<
{
SwFmDrawPage* pPage = GetSvxPage();
- if(pPage)//kann das auch Null sein?
+ if(pPage) //TODO: can this be Null?
{
- //markieren und MarkList zurueckgeben
+ // mark and return MarkList
const SdrMarkList& rMarkList = pPage->PreGroup(xShapes);
if ( rMarkList.GetMarkCount() > 1 )
{
@@ -807,7 +807,7 @@ void SwXDrawPage::ungroup(const uno::Reference< drawing::XShapeGroup > & xShapeG
if(xPageAgg.is())
{
SwFmDrawPage* pPage = GetSvxPage();
- if(pPage)//kann das auch Null sein?
+ if(pPage) //TODO: can this be Null?
{
pPage->PreUnGroup(xShapeGroup);
UnoActionContext aContext(pDoc);
@@ -1075,7 +1075,7 @@ void SwXShape::setPropertyValue(const OUString& rPropertyName, const uno::Any& a
{
if ( pEntry->nFlags & beans::PropertyAttribute::READONLY)
throw beans::PropertyVetoException ("Property is read-only: " + rPropertyName, static_cast < cppu::OWeakObject * > ( this ) );
- //mit Layout kann der Anker umgesetzt werden, ohne dass sich die Position aendert
+ // with the layout it is possible to move the anchor without changing the position
if(pFmt)
{
SwAttrSet aSet(pFmt->GetAttrSet());