Skip to content

Commit 1d5d92e

Browse files
committed
fix windows build of QgsFeatureRequest::OrderBy again (reapply 8f29f28 and 3c843a8)
1 parent 0923f56 commit 1d5d92e

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/core/qgsfeaturerequest.h

+8-8
Original file line numberDiff line numberDiff line change
@@ -215,49 +215,49 @@ class CORE_EXPORT QgsFeatureRequest
215215
*
216216
* \since QGIS 2.14
217217
*/
218-
class CORE_EXPORT OrderBy : public QList<QgsFeatureRequest::OrderByClause>
218+
class OrderBy : public QList<QgsFeatureRequest::OrderByClause>
219219
{
220220
public:
221221

222222
/**
223223
* Create a new empty order by
224224
*/
225-
OrderBy()
225+
CORE_EXPORT OrderBy()
226226
: QList<QgsFeatureRequest::OrderByClause>()
227227
{}
228228

229229
/**
230230
* Create a new order by from a list of clauses
231231
*/
232-
OrderBy( const QList<QgsFeatureRequest::OrderByClause> &other );
232+
CORE_EXPORT OrderBy( const QList<QgsFeatureRequest::OrderByClause> &other );
233233

234234
/**
235235
* Get a copy as a list of OrderByClauses
236236
*
237237
* This is only required in Python where the inheritance
238238
* is not properly propagated and this makes it usable.
239239
*/
240-
QList<QgsFeatureRequest::OrderByClause> list() const;
240+
QList<QgsFeatureRequest::OrderByClause> CORE_EXPORT list() const;
241241

242242
/**
243243
* Serialize to XML
244244
*/
245-
void save( QDomElement &elem ) const;
245+
void CORE_EXPORT save( QDomElement &elem ) const;
246246

247247
/**
248248
* Deserialize from XML
249249
*/
250-
void load( const QDomElement &elem );
250+
void CORE_EXPORT load( const QDomElement &elem );
251251

252252
/**
253253
* Returns a set of used attributes
254254
*/
255-
QSet<QString> usedAttributes() const;
255+
QSet<QString> CORE_EXPORT usedAttributes() const;
256256

257257
/**
258258
* Dumps the content to an SQL equivalent syntax
259259
*/
260-
QString dump() const;
260+
QString CORE_EXPORT dump() const;
261261
};
262262

263263
/**

0 commit comments

Comments
 (0)