summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChr. Rossmanith <ChrRossmanith@gmx.de>2015-03-24 22:21:26 +0100
committerChr. Rossmanith <ChrRossmanith@gmx.de>2015-03-27 23:13:59 +0100
commitf1a1327435a3e146b2f0d67fbc14dd041231e503 (patch)
tree5ceb914b51f62fb2e92633cf8bfe6cdb3958fe2c
parent0a4e9138281bd0a4be59031357c1bf52134d007a (diff)
fixed typos in comments
Change-Id: I6f0b90f7a76ddc69e158502af760466ab7ce2f91
-rw-r--r--filter/source/svg/svgwriter.cxx2
-rw-r--r--svgio/inc/svgio/svgreader/svgdocument.hxx6
2 files changed, 4 insertions, 4 deletions
diff --git a/filter/source/svg/svgwriter.cxx b/filter/source/svg/svgwriter.cxx
index c3b544f4ad43..0ebab07639b3 100644
--- a/filter/source/svg/svgwriter.cxx
+++ b/filter/source/svg/svgwriter.cxx
@@ -2641,7 +2641,7 @@ void SVGActionWriter::ImplWriteActions( const GDIMetaFile& rMtf,
const Reference< XShape >* pxShape,
const GDIMetaFile* pTextEmbeddedBitmapMtf )
{
- // need a counter fo rthe actions written per shape to avoid double ID
+ // need a counter for the actions written per shape to avoid double ID
// generation
sal_Int32 nEntryCount(0);
diff --git a/svgio/inc/svgio/svgreader/svgdocument.hxx b/svgio/inc/svgio/svgreader/svgdocument.hxx
index 0c3a9df2cba9..7be38a6fcab7 100644
--- a/svgio/inc/svgio/svgreader/svgdocument.hxx
+++ b/svgio/inc/svgio/svgreader/svgdocument.hxx
@@ -53,21 +53,21 @@ namespace svgio
SvgDocument(const OUString& rAbsolutePath);
~SvgDocument();
- /// append anopther root node, ownership changes
+ /// append another root node, ownership changes
void appendNode(SvgNode* pNode);
/// add/remove nodes with Id to mapper
void addSvgNodeToMapper(const OUString& rStr, const SvgNode& rNode);
void removeSvgNodeFromMapper(const OUString& rStr);
- /// find a node by it's Id
+ /// find a node by its Id
bool hasSvgNodesById() const { return !maIdTokenMapperList.empty(); }
const SvgNode* findSvgNodeById(const OUString& rStr) const;
/// add/remove styles to mapper
void addSvgStyleAttributesToMapper(const OUString& rStr, const SvgStyleAttributes& rSvgStyleAttributes);
- /// find a style by it's Id
+ /// find a style by its Id
bool hasGlobalCssStyleAttributes() const { return !maIdStyleTokenMapperList.empty(); }
const SvgStyleAttributes* findGlobalCssStyleAttributes(const OUString& rStr) const;