Skip to content

Commit

Permalink
Fix sip problems / export gui classes to libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn authored and jef-n committed Mar 27, 2013
1 parent bb360b8 commit d9fb2df
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion python/core/qgsvectorlayercache.sip
Expand Up @@ -11,7 +11,7 @@
* takes much longer than querying in bunches (e.g. network latency, slow views in the database...)
*/

class QgsVectorLayerCache : public QObject
class QgsVectorLayerCache : QObject
{
%TypeHeaderCode
#include "qgsvectorlayercache.h"
Expand Down
2 changes: 1 addition & 1 deletion src/gui/attributetable/qgsattributetablefiltermodel.h
Expand Up @@ -27,7 +27,7 @@ class QgsVectorLayerCache;
class QgsMapCanvas;
class QItemSelectionModel;

class QgsAttributeTableFilterModel: public QSortFilterProxyModel
class GUI_EXPORT QgsAttributeTableFilterModel: public QSortFilterProxyModel
{
Q_OBJECT

Expand Down
2 changes: 1 addition & 1 deletion src/gui/attributetable/qgsdualview.h
Expand Up @@ -30,7 +30,7 @@ class QSignalMapper;
/**
* @brief
*/
class QgsDualView : public QStackedWidget, private Ui::QgsDualViewBase
class GUI_EXPORT QgsDualView : public QStackedWidget, private Ui::QgsDualViewBase
{
Q_OBJECT

Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsattributedialog.h
Expand Up @@ -27,7 +27,7 @@ class QgsVectorLayer;
class QgsHighlight;
class QgsDistanceArea;

class QgsAttributeDialog : public QObject
class GUI_EXPORT QgsAttributeDialog : public QObject
{
Q_OBJECT

Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgshighlight.h
Expand Up @@ -27,7 +27,7 @@ class QgsVectorLayer;

/** A class for highlight features on the map.
*/
class QgsHighlight: public QgsMapCanvasItem
class GUI_EXPORT QgsHighlight: public QgsMapCanvasItem
{
public:
QgsHighlight( QgsMapCanvas *mapCanvas, QgsGeometry *geom, QgsVectorLayer *layer );
Expand Down

0 comments on commit d9fb2df

Please sign in to comment.