Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
#9094: fix incorrect header class
  • Loading branch information
ahuarte47 committed Dec 19, 2013
1 parent c86c412 commit e3e01fc
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions src/app/qgsmaptoolselect.cpp
Expand Up @@ -13,6 +13,7 @@
* *
***************************************************************************/


#include "qgsmaptoolselect.h"
#include "qgsmaptoolselectutils.h"
#include "qgsrubberband.h"
Expand Down
1 change: 1 addition & 0 deletions src/app/qgsmaptoolselectpolygon.cpp
Expand Up @@ -71,3 +71,4 @@ void QgsMapToolSelectPolygon::canvasMoveEvent( QMouseEvent * e )
mRubberBand->addPoint( toMapCoordinates( e->pos() ) );
}
}

1 change: 0 additions & 1 deletion src/app/qgsmaptoolselectradius.cpp
Expand Up @@ -109,4 +109,3 @@ void QgsMapToolSelectRadius::setRadiusRubberBand( QgsPoint & radiusEdge )
mRubberBand->addPoint( radiusPoint );
}
}

2 changes: 1 addition & 1 deletion src/gui/attributetable/qgsgenericfeatureselectionmanager.h
Expand Up @@ -24,7 +24,7 @@
* If you want to synchronize the attribute table selection with the map canvas selection, you
* should use { @link QgsVectorLayerSelectionManager } instead.
*/
class CORE_EXPORT QgsGenericFeatureSelectionManager : public QgsIFeatureSelectionManager
class GUI_EXPORT QgsGenericFeatureSelectionManager : public QgsIFeatureSelectionManager
{
Q_OBJECT

Expand Down
2 changes: 1 addition & 1 deletion src/gui/attributetable/qgsifeatureselectionmanager.h
Expand Up @@ -26,7 +26,7 @@
* e.g. { @link QgsVectorLayer } implements this interface to manage its selections.
*/

class CORE_EXPORT QgsIFeatureSelectionManager : public QObject
class GUI_EXPORT QgsIFeatureSelectionManager : public QObject
{
Q_OBJECT

Expand Down
2 changes: 1 addition & 1 deletion src/gui/attributetable/qgsvectorlayerselectionmanager.h
Expand Up @@ -20,7 +20,7 @@

class QgsVectorLayer;

class CORE_EXPORT QgsVectorLayerSelectionManager : public QgsIFeatureSelectionManager
class GUI_EXPORT QgsVectorLayerSelectionManager : public QgsIFeatureSelectionManager
{
Q_OBJECT

Expand Down

0 comments on commit e3e01fc

Please sign in to comment.