File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ class QgsMapLayerComboBox : QComboBox
20
20
void setFilters( QgsMapLayerProxyModel::Filters filters );
21
21
22
22
//! currently used filter on list layers
23
- QgsMapLayerProxyModel::Filters getFilters ();
23
+ QgsMapLayerProxyModel::Filters filters ();
24
24
25
25
///! currentLayer returns the current layer selected in the combo box
26
26
QgsMapLayer* currentLayer();
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ class GUI_EXPORT QgsMapLayerComboBox : public QComboBox
31
31
{
32
32
Q_OBJECT
33
33
Q_FLAGS ( QgsMapLayerProxyModel::Filters )
34
- Q_PROPERTY ( QgsMapLayerProxyModel::Filters filters READ getFilters WRITE setFilters )
34
+ Q_PROPERTY ( QgsMapLayerProxyModel::Filters filters READ filters WRITE setFilters )
35
35
36
36
public:
37
37
/* *
@@ -44,7 +44,7 @@ class GUI_EXPORT QgsMapLayerComboBox : public QComboBox
44
44
void setFilters ( QgsMapLayerProxyModel::Filters filters );
45
45
46
46
// ! currently used filter on list layers
47
- QgsMapLayerProxyModel::Filters getFilters () {return mProxyModel ->filters ();}
47
+ QgsMapLayerProxyModel::Filters filters () {return mProxyModel ->filters ();}
48
48
49
49
// ! currentLayer returns the current layer selected in the combo box
50
50
QgsMapLayer* currentLayer ();
You can’t perform that action at this time.
0 commit comments