Skip to content

Commit 7b21c72

Browse files
committed
Fix windows build
1 parent eb9a22e commit 7b21c72

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

python/core/qgsvectorlayerundocommand.sip

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class QgsVectorLayerUndoCommandChangeAttribute : QgsVectorLayerUndoCommand
6767
};
6868

6969

70-
class QgsVectorLayerUndoCommandAddAttribute : public QgsVectorLayerUndoCommand
70+
class QgsVectorLayerUndoCommandAddAttribute : QgsVectorLayerUndoCommand
7171
{
7272
%TypeHeaderCode
7373
#include "qgsvectorlayerundocommand.h"

src/core/qgsvectorlayerundocommand.h

+7-7
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class QgsGeometryCache;
3232
#include "qgsvectorlayereditbuffer.h"
3333

3434

35-
class QgsVectorLayerUndoCommand : public QUndoCommand
35+
class CORE_EXPORT QgsVectorLayerUndoCommand : public QUndoCommand
3636
{
3737
public:
3838
QgsVectorLayerUndoCommand( QgsVectorLayerEditBuffer *buffer )
@@ -50,7 +50,7 @@ class QgsVectorLayerUndoCommand : public QUndoCommand
5050
};
5151

5252

53-
class QgsVectorLayerUndoCommandAddFeature : public QgsVectorLayerUndoCommand
53+
class CORE_EXPORT QgsVectorLayerUndoCommandAddFeature : public QgsVectorLayerUndoCommand
5454
{
5555
public:
5656
QgsVectorLayerUndoCommandAddFeature( QgsVectorLayerEditBuffer* buffer, QgsFeature& f );
@@ -63,7 +63,7 @@ class QgsVectorLayerUndoCommandAddFeature : public QgsVectorLayerUndoCommand
6363
};
6464

6565

66-
class QgsVectorLayerUndoCommandDeleteFeature : public QgsVectorLayerUndoCommand
66+
class CORE_EXPORT QgsVectorLayerUndoCommandDeleteFeature : public QgsVectorLayerUndoCommand
6767
{
6868
public:
6969
QgsVectorLayerUndoCommandDeleteFeature( QgsVectorLayerEditBuffer* buffer, QgsFeatureId fid );
@@ -77,7 +77,7 @@ class QgsVectorLayerUndoCommandDeleteFeature : public QgsVectorLayerUndoCommand
7777
};
7878

7979

80-
class QgsVectorLayerUndoCommandChangeGeometry : public QgsVectorLayerUndoCommand
80+
class CORE_EXPORT QgsVectorLayerUndoCommandChangeGeometry : public QgsVectorLayerUndoCommand
8181
{
8282
public:
8383
QgsVectorLayerUndoCommandChangeGeometry( QgsVectorLayerEditBuffer* buffer, QgsFeatureId fid, QgsGeometry* newGeom );
@@ -95,7 +95,7 @@ class QgsVectorLayerUndoCommandChangeGeometry : public QgsVectorLayerUndoCommand
9595
};
9696

9797

98-
class QgsVectorLayerUndoCommandChangeAttribute : public QgsVectorLayerUndoCommand
98+
class CORE_EXPORT QgsVectorLayerUndoCommandChangeAttribute : public QgsVectorLayerUndoCommand
9999
{
100100
public:
101101
QgsVectorLayerUndoCommandChangeAttribute( QgsVectorLayerEditBuffer* buffer, QgsFeatureId fid, int fieldIndex, const QVariant& newValue );
@@ -111,7 +111,7 @@ class QgsVectorLayerUndoCommandChangeAttribute : public QgsVectorLayerUndoComman
111111
};
112112

113113

114-
class QgsVectorLayerUndoCommandAddAttribute : public QgsVectorLayerUndoCommand
114+
class CORE_EXPORT QgsVectorLayerUndoCommandAddAttribute : public QgsVectorLayerUndoCommand
115115
{
116116
public:
117117
QgsVectorLayerUndoCommandAddAttribute( QgsVectorLayerEditBuffer* buffer, const QgsField& field );
@@ -125,7 +125,7 @@ class QgsVectorLayerUndoCommandAddAttribute : public QgsVectorLayerUndoCommand
125125
};
126126

127127

128-
class QgsVectorLayerUndoCommandDeleteAttribute : public QgsVectorLayerUndoCommand
128+
class CORE_EXPORT QgsVectorLayerUndoCommandDeleteAttribute : public QgsVectorLayerUndoCommand
129129
{
130130
public:
131131
QgsVectorLayerUndoCommandDeleteAttribute( QgsVectorLayerEditBuffer* buffer, int fieldIndex );

0 commit comments

Comments
 (0)