Skip to content

Commit e3e01fc

Browse files
committed
#9094: fix incorrect header class
1 parent c86c412 commit e3e01fc

6 files changed

+5
-4
lines changed

src/app/qgsmaptoolselect.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
* *
1414
***************************************************************************/
1515

16+
1617
#include "qgsmaptoolselect.h"
1718
#include "qgsmaptoolselectutils.h"
1819
#include "qgsrubberband.h"

src/app/qgsmaptoolselectpolygon.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -71,3 +71,4 @@ void QgsMapToolSelectPolygon::canvasMoveEvent( QMouseEvent * e )
7171
mRubberBand->addPoint( toMapCoordinates( e->pos() ) );
7272
}
7373
}
74+

src/app/qgsmaptoolselectradius.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -109,4 +109,3 @@ void QgsMapToolSelectRadius::setRadiusRubberBand( QgsPoint & radiusEdge )
109109
mRubberBand->addPoint( radiusPoint );
110110
}
111111
}
112-

src/gui/attributetable/qgsgenericfeatureselectionmanager.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* If you want to synchronize the attribute table selection with the map canvas selection, you
2525
* should use { @link QgsVectorLayerSelectionManager } instead.
2626
*/
27-
class CORE_EXPORT QgsGenericFeatureSelectionManager : public QgsIFeatureSelectionManager
27+
class GUI_EXPORT QgsGenericFeatureSelectionManager : public QgsIFeatureSelectionManager
2828
{
2929
Q_OBJECT
3030

src/gui/attributetable/qgsifeatureselectionmanager.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* e.g. { @link QgsVectorLayer } implements this interface to manage its selections.
2727
*/
2828

29-
class CORE_EXPORT QgsIFeatureSelectionManager : public QObject
29+
class GUI_EXPORT QgsIFeatureSelectionManager : public QObject
3030
{
3131
Q_OBJECT
3232

src/gui/attributetable/qgsvectorlayerselectionmanager.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
class QgsVectorLayer;
2222

23-
class CORE_EXPORT QgsVectorLayerSelectionManager : public QgsIFeatureSelectionManager
23+
class GUI_EXPORT QgsVectorLayerSelectionManager : public QgsIFeatureSelectionManager
2424
{
2525
Q_OBJECT
2626

0 commit comments

Comments
 (0)