Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Shorten class name
  • Loading branch information
nyalldawson committed Sep 10, 2021
1 parent 5234442 commit 24a9509
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/analysis/processing/qgsalgorithmannotations.h
Expand Up @@ -28,12 +28,12 @@
/**
* Native transfer annotations from main annotation layer algorithm
*/
class QgsTransferAnnotationsFromMainAnnotationLayerAlgorithm : public QgsProcessingAlgorithm
class QgsTransferAnnotationsFromMainAlgorithm : public QgsProcessingAlgorithm
{

public:

QgsTransferAnnotationsFromMainAnnotationLayerAlgorithm() = default;
QgsTransferAnnotationsFromMainAlgorithm() = default;
void initAlgorithm( const QVariantMap &configuration = QVariantMap() ) override;
QString name() const override;
QString displayName() const override;
Expand All @@ -42,7 +42,7 @@ class QgsTransferAnnotationsFromMainAnnotationLayerAlgorithm : public QgsProcess
QString groupId() const override;
Flags flags() const override;
QString shortHelpString() const override;
QgsTransferAnnotationsFromMainAnnotationLayerAlgorithm *createInstance() const override SIP_FACTORY;
QgsTransferAnnotationsFromMainAlgorithm *createInstance() const override SIP_FACTORY;

protected:

Expand Down
2 changes: 1 addition & 1 deletion src/analysis/processing/qgsnativealgorithms.cpp
Expand Up @@ -478,7 +478,7 @@ void QgsNativeAlgorithms::loadAlgorithms()
addAlgorithm( new QgsTaperedBufferAlgorithm() );
addAlgorithm( new QgsTinMeshCreationAlgorithm() );
addAlgorithm( new QgsTransectAlgorithm() );
addAlgorithm( new QgsTransferAnnotationsFromMainAnnotationLayerAlgorithm() );
addAlgorithm( new QgsTransferAnnotationsFromMainAlgorithm() );
addAlgorithm( new QgsTransformAlgorithm() );
addAlgorithm( new QgsTranslateAlgorithm() );
addAlgorithm( new QgsTruncateTableAlgorithm() );
Expand Down

0 comments on commit 24a9509

Please sign in to comment.