Skip to content

Commit 8c1584f

Browse files
committedApr 23, 2017
AFS feature source doesn't need to be a QObject
1 parent b819bc2 commit 8c1584f

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed
 

‎src/providers/arcgisrest/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ SET (AFS_SRCS
2525
SET (AFS_MOC_HDRS
2626
qgsarcgisrestutils.h
2727
qgsafsdataitems.h
28-
qgsafsfeatureiterator.h
2928
qgsafsprovider.h
3029
qgsafssourceselect.h
3130
)

‎src/providers/arcgisrest/qgsafsfeatureiterator.h

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,14 @@ class QgsAfsProvider;
2121
class QgsSpatialIndex;
2222

2323

24-
class QgsAfsFeatureSource : public QObject, public QgsAbstractFeatureSource
24+
class QgsAfsFeatureSource : public QgsAbstractFeatureSource
2525
{
26-
Q_OBJECT
2726

2827
public:
2928
QgsAfsFeatureSource( const QgsAfsProvider *provider );
3029
QgsFeatureIterator getFeatures( const QgsFeatureRequest &request ) override;
3130
QgsAfsProvider *provider() const;
3231

33-
signals:
34-
void extentRequested( const QgsRectangle & );
35-
3632
protected:
3733
QgsAfsProvider *mProvider = nullptr;
3834

0 commit comments

Comments
 (0)
Please sign in to comment.