Skip to content

Commit

Permalink
Add some private doxygen comments
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Oct 22, 2020
1 parent 42af1ef commit 2adadce
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/analysis/processing/qgsalgorithmtinmeshcreation.cpp
Expand Up @@ -23,6 +23,8 @@
#include "qgsmeshlayer.h"
#include "qgis.h"

///@cond PRIVATE

QString QgsTinMeshCreationAlgorithm::group() const
{
return QObject::tr( "Mesh" );
Expand Down Expand Up @@ -206,3 +208,5 @@ bool QgsTinMeshCreationAlgorithm::canExecute( QString *errorMessage ) const

return true;
}

///@endcond PRIVATE
2 changes: 2 additions & 0 deletions src/gui/codeeditors/qgscodeeditorcss.cpp
Expand Up @@ -73,6 +73,7 @@ void QgsCodeEditorCSS::initializeLexer()
runPostLexerConfigurationTasks();
}

///@cond PRIVATE
//
// QgsQsciLexerCSS
//
Expand All @@ -90,3 +91,4 @@ QString QgsQsciLexerCSS::description( int style ) const

return QsciLexerCSS::description( style );
}
///@endcond PRIVATE
2 changes: 2 additions & 0 deletions src/gui/codeeditors/qgscodeeditorpython.cpp
Expand Up @@ -233,6 +233,7 @@ void QgsCodeEditorPython::searchSelectedTextInPyQGISDocs()
QDesktopServices::openUrl( QUrl( QStringLiteral( "https://qgis.org/pyqgis/%1/search.html?q=%2" ).arg( version, text ) ) );
}

///@cond PRIVATE
//
// QgsQsciLexerPython
//
Expand All @@ -253,3 +254,4 @@ const char *QgsQsciLexerPython::keywords( int set ) const

return QsciLexerPython::keywords( set );
}
///@endcond PRIVATE
4 changes: 4 additions & 0 deletions src/gui/processing/qgsprocessingtininputlayerswidget.cpp
Expand Up @@ -17,6 +17,8 @@
#include "qgsproject.h"
#include "qgsprocessingcontext.h"

/// @cond PRIVATE

QgsProcessingTinInputLayersWidget::QgsProcessingTinInputLayersWidget( QgsProject *project ):
mInputLayersModel( project )
{
Expand Down Expand Up @@ -382,3 +384,5 @@ QVariant QgsProcessingTinInputLayersWidgetWrapper::widgetValue() const
else
return QVariant();
}

/// @endcond PRIVATE
4 changes: 4 additions & 0 deletions src/gui/qgsmaptoolcapture.cpp
Expand Up @@ -40,6 +40,8 @@
#include <QStatusBar>


///@cond PRIVATE

QgsMapToolCapture::QgsMapToolCapture( QgsMapCanvas *canvas, QgsAdvancedDigitizingDockWidget *cadDockWidget, CaptureMode mode )
: QgsMapToolAdvancedDigitizing( canvas, cadDockWidget )
, mCaptureMode( mode )
Expand Down Expand Up @@ -1192,3 +1194,5 @@ QgsCurve *QgsMapToolCaptureRubberBand::createCircularString()
else
return curve.release();
}

///@endcond PRIVATE
4 changes: 4 additions & 0 deletions src/gui/raster/qgsresamplingutils.cpp
Expand Up @@ -28,6 +28,8 @@
#include <QDoubleSpinBox>
#include <QCheckBox>

/// @cond PRIVATE

QgsResamplingUtils::QgsResamplingUtils() = default;

void QgsResamplingUtils::initWidgets( QgsRasterLayer *rasterLayer,
Expand Down Expand Up @@ -172,3 +174,5 @@ void QgsResamplingUtils::refreshLayerFromWidgets()
resampleFilter->setMaxOversampling( mMaximumOversamplingSpinBox->value() );
}
}

/// @endcond PRIVATE

0 comments on commit 2adadce

Please sign in to comment.