Skip to content

Commit

Permalink
Fix some doxygen warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Nov 24, 2017
1 parent 3268b77 commit cc29f0e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions python/core/layout/qgslayoutmultiframe.sip
Expand Up @@ -170,7 +170,7 @@ class QgsLayoutMultiFrame: QgsLayoutObject, QgsLayoutUndoObjectInterface
:rtype: ResizeMode
%End

bool writeXml( QDomElement &elem, QDomDocument &doc, const QgsReadWriteContext &context, bool ignoreFrames = false ) const;
bool writeXml( QDomElement &parentElement, QDomDocument &document, const QgsReadWriteContext &context, bool ignoreFrames = false ) const;
%Docstring
Stores the multiframe state in a DOM element.
\param parentElement parent DOM element (e.g. 'Layout' element)
Expand All @@ -181,7 +181,7 @@ class QgsLayoutMultiFrame: QgsLayoutObject, QgsLayoutUndoObjectInterface
:rtype: bool
%End

bool readXml( const QDomElement &itemElem, const QDomDocument &doc, const QgsReadWriteContext &context, bool ignoreFrames = false );
bool readXml( const QDomElement &itemElement, const QDomDocument &document, const QgsReadWriteContext &context, bool ignoreFrames = false );
%Docstring
Sets the item state from a DOM element.
\param itemElement is the DOM node corresponding to item (e.g. 'LayoutItem' element)
Expand Down
4 changes: 2 additions & 2 deletions src/core/layout/qgslayoutmultiframe.h
Expand Up @@ -199,7 +199,7 @@ class CORE_EXPORT QgsLayoutMultiFrame: public QgsLayoutObject, public QgsLayoutU
* \param ignoreFrames set to false to avoid writing state information about child frames into DOM
* \see readXml()
*/
bool writeXml( QDomElement &elem, QDomDocument &doc, const QgsReadWriteContext &context, bool ignoreFrames = false ) const;
bool writeXml( QDomElement &parentElement, QDomDocument &document, const QgsReadWriteContext &context, bool ignoreFrames = false ) const;

/**
* Sets the item state from a DOM element.
Expand All @@ -209,7 +209,7 @@ class CORE_EXPORT QgsLayoutMultiFrame: public QgsLayoutObject, public QgsLayoutU
* \param ignoreFrames set to false to avoid read state information about child frames from DOM
* \see writeXml()
*/
bool readXml( const QDomElement &itemElem, const QDomDocument &doc, const QgsReadWriteContext &context, bool ignoreFrames = false );
bool readXml( const QDomElement &itemElement, const QDomDocument &document, const QgsReadWriteContext &context, bool ignoreFrames = false );

/**
* Returns a list of all child frames for this multiframe.
Expand Down

0 comments on commit cc29f0e

Please sign in to comment.