Remove no longer required QgsProcessingContext::UseSelectionIfPresent flag

Since using selection is now a per-feature-source setting
This commit is contained in:
Nyall Dawson 2017-06-05 15:18:39 +10:00
parent ed09a8a727
commit 3bd74aef52
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ class QgsProcessingContext
enum Flag
{
UseSelectionIfPresent,
// UseSelectionIfPresent,
};
typedef QFlags<QgsProcessingContext::Flag> Flags;

View File

@ -42,7 +42,7 @@ class CORE_EXPORT QgsProcessingContext
//! Flags that affect how processing algorithms are run
enum Flag
{
UseSelectionIfPresent = 1 << 0, //!< Filter to selected features when running algorithms (if a selection exists)
// UseSelectionIfPresent = 1 << 0,
};
Q_DECLARE_FLAGS( Flags, Flag )