summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@collabora.com>2014-12-07 01:07:02 -0500
committerKohei Yoshida <kohei.yoshida@collabora.com>2014-12-07 01:09:05 -0500
commit9dd8413a61301305d1bafacc5d3511cf3c3129e2 (patch)
treef508e8ad890789445ca29dbd86316ff4ecaebe6d /sw
parentf28ee9e4004ebf51332a998638aea779e07f6450 (diff)
Forward-declare MarkedUndoAction.
Change-Id: I1c36077cada47bacfb8436cf3fb659e47d02da60
Diffstat (limited to 'sw')
-rw-r--r--sw/source/core/docnode/nodedump.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/docnode/nodedump.cxx b/sw/source/core/docnode/nodedump.cxx
index 6007a3fec151..f0be0e27f263 100644
--- a/sw/source/core/docnode/nodedump.cxx
+++ b/sw/source/core/docnode/nodedump.cxx
@@ -1024,7 +1024,7 @@ void lcl_dumpSfxUndoAction(WriterHelper& writer, SfxUndoAction* pAction)
writer.startElement("list");
writer.writeFormatAttribute("size", TMP_FORMAT, pList->aUndoActions.size());
for (size_t i = 0; i < pList->aUndoActions.size(); ++i)
- lcl_dumpSfxUndoAction(writer, pList->aUndoActions[i].pAction);
+ lcl_dumpSfxUndoAction(writer, pList->aUndoActions.GetUndoAction(i));
writer.endElement();
}