diff options
author | Muhammet Kara <muhammet.kara@collabora.com> | 2020-02-16 18:52:52 +0300 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-02-17 15:36:26 +0100 |
commit | 11345d8b7e3e1c6bbe940c08cc284e257e0811d0 (patch) | |
tree | 6923cbfc4e7bca37ab810fe080e0541804811ed7 /sw/source | |
parent | ce6434c44a9f820275908ff0ee4166427f481d6d (diff) |
Prefer prefix ++ operator for non-primitive type SwNodeIndex
Change-Id: I8863084065cd4ec3f1735a9469f6e28cd525abce
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88810
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/filter/ww8/docxattributeoutput.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx b/sw/source/filter/ww8/docxattributeoutput.cxx index 3e7964b8f957..5fe8e2f41088 100644 --- a/sw/source/filter/ww8/docxattributeoutput.cxx +++ b/sw/source/filter/ww8/docxattributeoutput.cxx @@ -344,7 +344,7 @@ static void checkAndWriteFloatingTables(DocxAttributeOutput& rDocxAttributeOutpu SwNodeIndex aStartNode = *pStartNode; // go to the next node (actual content) - aStartNode++; + ++aStartNode; // this has to be a table if (!aStartNode.GetNode().IsTableNode()) |