summaryrefslogtreecommitdiff
path: root/editeng/source/editeng/editdoc.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'editeng/source/editeng/editdoc.cxx')
-rw-r--r--editeng/source/editeng/editdoc.cxx5
1 files changed, 0 insertions, 5 deletions
diff --git a/editeng/source/editeng/editdoc.cxx b/editeng/source/editeng/editdoc.cxx
index 6f026127967d..5db6b7683526 100644
--- a/editeng/source/editeng/editdoc.cxx
+++ b/editeng/source/editeng/editdoc.cxx
@@ -71,8 +71,6 @@
using namespace ::com::sun::star;
-
-
sal_uInt16 GetScriptItemId( sal_uInt16 nItemId, SvtScriptType nScriptType )
{
sal_uInt16 nId = nItemId;
@@ -1004,7 +1002,6 @@ EditLine::~EditLine()
}
-
EditLine* EditLine::Clone() const
{
EditLine* pL = new EditLine;
@@ -1169,7 +1166,6 @@ EditPaM::EditPaM(const EditPaM& r) : pNode(r.pNode), nIndex(r.nIndex) {}
EditPaM::EditPaM(ContentNode* p, sal_Int32 n) : pNode(p), nIndex(n) {}
-
void EditPaM::SetNode(ContentNode* p)
{
pNode = p;
@@ -2885,7 +2881,6 @@ bool CharAttribList::HasAttrib( sal_Int32 nStartPos, sal_Int32 nEndPos ) const
}
-
namespace {
class FindByAddress : public std::unary_function<std::unique_ptr<EditCharAttrib>, bool>