Skip to content

Commit

Permalink
Fix doxygen warning
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed May 12, 2020
1 parent 0f54838 commit 1814052
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/core/textrenderer/qgstextblock.cpp
Expand Up @@ -56,6 +56,7 @@ QgsTextFragment &QgsTextBlock::operator[]( int index )
return mFragments[ index ];
}

///@cond PRIVATE
QVector< QgsTextFragment >::const_iterator QgsTextBlock::begin() const
{
return mFragments.begin();
Expand All @@ -65,3 +66,4 @@ QVector< QgsTextFragment >::const_iterator QgsTextBlock::end() const
{
return mFragments.end();
}
///@endcond
2 changes: 2 additions & 0 deletions src/core/textrenderer/qgstextdocument.cpp
Expand Up @@ -187,6 +187,7 @@ void QgsTextDocument::splitLines( const QString &wrapCharacter, int autoWrapLeng
}
}

///@cond PRIVATE
QVector< QgsTextBlock >::const_iterator QgsTextDocument::begin() const
{
return mBlocks.begin();
Expand All @@ -196,3 +197,4 @@ QVector< QgsTextBlock >::const_iterator QgsTextDocument::end() const
{
return mBlocks.end();
}
///@endcond

0 comments on commit 1814052

Please sign in to comment.