Skip to content

Commit d9fb2df

Browse files
m-kuhnjef-n
authored andcommitted
Fix sip problems / export gui classes to libraries
1 parent bb360b8 commit d9fb2df

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

python/core/qgsvectorlayercache.sip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* takes much longer than querying in bunches (e.g. network latency, slow views in the database...)
1212
*/
1313

14-
class QgsVectorLayerCache : public QObject
14+
class QgsVectorLayerCache : QObject
1515
{
1616
%TypeHeaderCode
1717
#include "qgsvectorlayercache.h"

src/gui/attributetable/qgsattributetablefiltermodel.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class QgsVectorLayerCache;
2727
class QgsMapCanvas;
2828
class QItemSelectionModel;
2929

30-
class QgsAttributeTableFilterModel: public QSortFilterProxyModel
30+
class GUI_EXPORT QgsAttributeTableFilterModel: public QSortFilterProxyModel
3131
{
3232
Q_OBJECT
3333

src/gui/attributetable/qgsdualview.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class QSignalMapper;
3030
/**
3131
* @brief
3232
*/
33-
class QgsDualView : public QStackedWidget, private Ui::QgsDualViewBase
33+
class GUI_EXPORT QgsDualView : public QStackedWidget, private Ui::QgsDualViewBase
3434
{
3535
Q_OBJECT
3636

src/gui/qgsattributedialog.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class QgsVectorLayer;
2727
class QgsHighlight;
2828
class QgsDistanceArea;
2929

30-
class QgsAttributeDialog : public QObject
30+
class GUI_EXPORT QgsAttributeDialog : public QObject
3131
{
3232
Q_OBJECT
3333

src/gui/qgshighlight.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class QgsVectorLayer;
2727

2828
/** A class for highlight features on the map.
2929
*/
30-
class QgsHighlight: public QgsMapCanvasItem
30+
class GUI_EXPORT QgsHighlight: public QgsMapCanvasItem
3131
{
3232
public:
3333
QgsHighlight( QgsMapCanvas *mapCanvas, QgsGeometry *geom, QgsVectorLayer *layer );

0 commit comments

Comments
 (0)