Skip to content

Commit c0640c6

Browse files
committed
[processing] Add flag for algorithms with known issues
1 parent 9f1fcb7 commit c0640c6

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

python/core/auto_generated/processing/qgsprocessingalgorithm.sip.in

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ Abstract base class for processing algorithms.
4545
FlagNoThreading,
4646
FlagDisplayNameIsLiteral,
4747
FlagSupportsInPlaceEdits,
48+
FlagKnownIssues,
4849
FlagDeprecated,
4950
};
5051
typedef QFlags<QgsProcessingAlgorithm::Flag> Flags;

src/core/processing/qgsprocessingalgorithm.h

+1
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ class CORE_EXPORT QgsProcessingAlgorithm
7575
FlagNoThreading = 1 << 6, //!< Algorithm is not thread safe and cannot be run in a background thread, e.g. for algorithms which manipulate the current project, layer selections, or with external dependencies which are not thread-safe.
7676
FlagDisplayNameIsLiteral = 1 << 7, //!< Algorithm's display name is a static literal string, and should not be translated or automatically formatted. For use with algorithms named after commands, e.g. GRASS 'v.in.ogr'.
7777
FlagSupportsInPlaceEdits = 1 << 8, //!< Algorithm supports in-place editing
78+
FlagKnownIssues = 1 << 9, //!< Algorithm has known issues
7879
FlagDeprecated = FlagHideFromToolbox | FlagHideFromModeler, //!< Algorithm is deprecated
7980
};
8081
Q_DECLARE_FLAGS( Flags, Flag )

0 commit comments

Comments
 (0)