Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Move private methods implementation to header
- Loading branch information
Showing
with
8 additions
and
12 deletions.
-
+0
−10
src/core/qgsfeaturefiltermodel.cpp
-
+8
−2
src/core/qgsfeaturefiltermodel_p.h
|
@@ -464,13 +464,3 @@ void QgsFeatureFilterModel::setExtraIdentifierValue( const QVariant &extraIdenti |
|
|
mExtraIdentifierValue = extraIdentifierValue; |
|
|
emit extraIdentifierValueChanged(); |
|
|
} |
|
|
|
|
|
QVariant QgsFieldExpressionValuesGatherer::data() const |
|
|
{ |
|
|
return mData; |
|
|
} |
|
|
|
|
|
void QgsFieldExpressionValuesGatherer::setData( const QVariant &data ) |
|
|
{ |
|
|
mData = data; |
|
|
} |
|
@@ -96,12 +96,18 @@ class QgsFieldExpressionValuesGatherer: public QThread |
|
|
/** |
|
|
* Internal data, use for whatever you want. |
|
|
*/ |
|
|
QVariant data() const; |
|
|
QVariant data() const |
|
|
{ |
|
|
return mData; |
|
|
} |
|
|
|
|
|
/** |
|
|
* Internal data, use for whatever you want. |
|
|
*/ |
|
|
void setData( const QVariant &data ); |
|
|
void setData( const QVariant &data ) |
|
|
{ |
|
|
mData = data; |
|
|
} |
|
|
|
|
|
signals: |
|
|
|
|
|