diff options
author | Tamás Zolnai <tamas.zolnai@collabora.com> | 2019-03-06 15:48:05 +0100 |
---|---|---|
committer | Tamás Zolnai <tamas.zolnai@collabora.com> | 2019-06-19 22:21:35 +0200 |
commit | bbfb5805d080c108c60b668a1315eb6472114635 (patch) | |
tree | a1817624b465422396a0dadb443c2fcfe05418a8 | |
parent | 2d95079d3c469eddeb88b997ccbef11c844fd582 (diff) |
MSForms: Add some extra comments for the new code.
Reviewed-on: https://gerrit.libreoffice.org/68965
Tested-by: Jenkins
Reviewed-by: Tamás Zolnai <tamas.zolnai@collabora.com>
(cherry picked from commit d47f037a220636d70297bc098ed08e0bcb763aa9)
Change-Id: I4b70eb2164032623a12f9e703c660eca1d6768ec
-rw-r--r-- | sw/qa/extras/globalfilter/globalfilter.cxx | 2 | ||||
-rw-r--r-- | sw/source/core/inc/UndoBookmark.hxx | 2 | ||||
-rw-r--r-- | sw/source/core/inc/rolbck.hxx | 4 |
3 files changed, 7 insertions, 1 deletions
diff --git a/sw/qa/extras/globalfilter/globalfilter.cxx b/sw/qa/extras/globalfilter/globalfilter.cxx index 68a97df6c3bc..fd55bc0dc747 100644 --- a/sw/qa/extras/globalfilter/globalfilter.cxx +++ b/sw/qa/extras/globalfilter/globalfilter.cxx @@ -1225,7 +1225,7 @@ void Test::testDropDownFormField() CPPUNIT_ASSERT_EQUAL_MESSAGE(sFailedMessage.getStr(), sal_Int32(0), vListEntries.getLength()); CPPUNIT_ASSERT_EQUAL_MESSAGE(sFailedMessage.getStr(), sal_Int32(-1), nSelection); } - else + else // The second one has list and also a selected item { CPPUNIT_ASSERT_EQUAL_MESSAGE(sFailedMessage.getStr(), sal_Int32(4), vListEntries.getLength()); CPPUNIT_ASSERT_EQUAL_MESSAGE(sFailedMessage.getStr(), sal_Int32(1), nSelection); diff --git a/sw/source/core/inc/UndoBookmark.hxx b/sw/source/core/inc/UndoBookmark.hxx index 7b9dd4fc68e5..3e2017d0721d 100644 --- a/sw/source/core/inc/UndoBookmark.hxx +++ b/sw/source/core/inc/UndoBookmark.hxx @@ -98,6 +98,7 @@ private: virtual void RedoImpl( ::sw::UndoRedoContext & ) override; }; +/// Handling undo / redo of checkbox and drop-down form field insertion class SwUndoInsNoTextFieldmark : public SwUndo { private: @@ -110,6 +111,7 @@ public: virtual void RedoImpl( ::sw::UndoRedoContext & ) override; }; +/// Handling undo / redo of text form field insertion class SwUndoInsTextFieldmark : public SwUndo { private: diff --git a/sw/source/core/inc/rolbck.hxx b/sw/source/core/inc/rolbck.hxx index 3fde226b7acf..2feec7e6d973 100644 --- a/sw/source/core/inc/rolbck.hxx +++ b/sw/source/core/inc/rolbck.hxx @@ -262,6 +262,8 @@ class SwHistoryBookmark : public SwHistoryHint std::shared_ptr< ::sfx2::MetadatableUndo > m_pMetadataUndo; }; +/// History object containing all information used during undo / redo +/// of checkbox and drop-down form field insertion. class SwHistoryNoTextFieldmark : public SwHistoryHint { public: @@ -275,6 +277,8 @@ class SwHistoryNoTextFieldmark : public SwHistoryHint const sal_Int32 m_nContent; }; +/// History object containing all information used during undo / redo +/// of text form field insertion. class SwHistoryTextFieldmark : public SwHistoryHint { public: |