diff options
Diffstat (limited to 'sw/inc/node.hxx')
-rw-r--r-- | sw/inc/node.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/inc/node.hxx b/sw/inc/node.hxx index 6639aefb5f97..df30db2b9f9e 100644 --- a/sw/inc/node.hxx +++ b/sw/inc/node.hxx @@ -730,9 +730,9 @@ inline SwPlaceholderNode::SwPlaceholderNode(const SwNodeIndex &rWhere) { } -inline SwNodePtr SwNodes::operator[]( sal_uLong n ) const +inline SwNode* SwNodes::operator[]( sal_uLong n ) const { - return static_cast<SwNodePtr>(BigPtrArray::operator[] ( n )); + return static_cast<SwNode*>(BigPtrArray::operator[] ( n )); } #endif |