Skip to content

Commit 3bd74ae

Browse files
committed
Remove no longer required QgsProcessingContext::UseSelectionIfPresent flag
Since using selection is now a per-feature-source setting
1 parent ed09a8a commit 3bd74ae

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

python/core/processing/qgsprocessingcontext.sip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class QgsProcessingContext
2727

2828
enum Flag
2929
{
30-
UseSelectionIfPresent,
30+
// UseSelectionIfPresent,
3131
};
3232
typedef QFlags<QgsProcessingContext::Flag> Flags;
3333

src/core/processing/qgsprocessingcontext.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class CORE_EXPORT QgsProcessingContext
4242
//! Flags that affect how processing algorithms are run
4343
enum Flag
4444
{
45-
UseSelectionIfPresent = 1 << 0, //!< Filter to selected features when running algorithms (if a selection exists)
45+
// UseSelectionIfPresent = 1 << 0,
4646
};
4747
Q_DECLARE_FLAGS( Flags, Flag )
4848

0 commit comments

Comments
 (0)