summaryrefslogtreecommitdiff
path: root/sw/inc/ndnotxt.hxx
diff options
context:
space:
mode:
authorChristoph Herzog <rhogez@googlemail.com>2011-02-21 02:20:33 +0100
committerChristoph Herzog <rhogez@googlemail.com>2011-02-21 02:23:33 +0100
commit3a918a2aef4bc4c492fc0e51ea3af0aaea38574b (patch)
tree6c55bd6abc36de9fbb982952c62a8a41905d2e61 /sw/inc/ndnotxt.hxx
parentb0c5f62affabf28fa2158df6e01cb1889bca1349 (diff)
Translation of German comments.
Diffstat (limited to 'sw/inc/ndnotxt.hxx')
-rw-r--r--sw/inc/ndnotxt.hxx16
1 files changed, 7 insertions, 9 deletions
diff --git a/sw/inc/ndnotxt.hxx b/sw/inc/ndnotxt.hxx
index d49752849339..b245cd8b09f1 100644
--- a/sw/inc/ndnotxt.hxx
+++ b/sw/inc/ndnotxt.hxx
@@ -32,28 +32,26 @@
class PolyPolygon;
-// --------------------
// SwNoTxtNode
-// --------------------
class SW_DLLPUBLIC SwNoTxtNode : public SwCntntNode
{
friend class SwNodes;
friend class SwNoTxtFrm;
- PolyPolygon *pContour; // Polygon fuer Konturumlauf
+ PolyPolygon *pContour;
BOOL bAutomaticContour : 1; // automatic contour polygon, not manipulated
BOOL bContourMapModeValid : 1; // contour map mode is not the graphics's
// prefered map mode, but either
// MM100 or or pixel
BOOL bPixelContour : 1; // contour map mode is invalid and pixel.
- // erzeugt fuer alle Ableitungen einen AttrSet mit Bereichen
- // fuer Frame- und Grafik-Attributen (wird nur vom SwCntntNode gerufen)
+ // Creates for all derivations an AttrSet with ranges for frame- and
+ // graphics-attributes (only called by SwCntntNode).
virtual void NewAttrSet( SwAttrPool& );
- SwNoTxtNode( const SwNoTxtNode& ); //nicht erlaubt
- SwNoTxtNode &operator=( const SwNoTxtNode& ); //nicht erlaubt
+ SwNoTxtNode( const SwNoTxtNode& ); // Not allowed.
+ SwNoTxtNode &operator=( const SwNoTxtNode& ); // Not allowed.
protected:
SwNoTxtNode( const SwNodeIndex &rWhere, const BYTE nNdType,
@@ -99,11 +97,11 @@ public:
BOOL IsContourMapModeValid() const { return bContourMapModeValid; }
- //Besorgt die Graphic, mit SwapIn fuer GrfNode, per GetData fuer OLE.
+ // Obtains the graphic with SwapIn for GrfNode via GetData for OLE.
Graphic GetGraphic() const;
};
-// Inline Metoden aus Node.hxx - erst hier ist der TxtNode bekannt !!
+// Inline methods from Node.hxx - we know TxtNode only here!!
inline SwNoTxtNode *SwNode::GetNoTxtNode()
{
return ND_NOTXTNODE & nNodeType ? (SwNoTxtNode*)this : 0;