Skip to content

Commit

Permalink
odtfmt: fix compiler warnings [-Wreorder]
Browse files Browse the repository at this point in the history
  • Loading branch information
benoit-pierre authored and poire-z committed Jul 29, 2024
1 parent 8363216 commit 70ca695
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crengine/src/odtfmt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -374,10 +374,10 @@ class odt_documentHandler : public xml_ElementHandler, odx_styleTagsHandler
xml_ElementHandler(reader, writer, odt_el_NULL, odt_elements),
m_footNotesWriter(doc), m_endNotesWriter(doc), m_saveWriter(NULL),
m_context(context), m_footNotes(NULL), m_endNotes(NULL), m_body(NULL),
m_isEndNote(false), m_titleHandler(titleHandler),
m_outlineLevel(0), m_inTable(false), m_inListItem(false),
m_isEndNote(false), m_paragraphStarted(false),
m_stylesHandler(reader, NULL, odt_el_automaticStyles, context),
m_listItemHadContent(false), m_paragraphStarted(false) {
m_titleHandler(titleHandler), m_outlineLevel(0), m_inTable(false),
m_inListItem(false), m_listItemHadContent(false) {
}
inline bool isInList() { return m_ListLevels.length() != 0; }
ldomNode *handleTagOpen(int tagId);
Expand Down

0 comments on commit 70ca695

Please sign in to comment.