Skip to content

Commit

Permalink
Add GUI_EXPORT and warning fix
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed May 22, 2014
1 parent 431b065 commit 9873782
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions src/gui/qgsattributeforminterface.cpp
Expand Up @@ -25,6 +25,7 @@ QgsAttributeFormInterface::QgsAttributeFormInterface(QgsAttributeForm* form )

bool QgsAttributeFormInterface::acceptChanges( const QgsFeature& feature )
{
Q_UNUSED( feature )
return true;
}

Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsdial.h
Expand Up @@ -3,7 +3,7 @@
#include <QPaintEvent>
#include <QSize>

class QgsDial : public QDial
class GUI_EXPORT QgsDial : public QDial
{
Q_OBJECT
public:
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsfeatureselectiondlg.h
Expand Up @@ -20,7 +20,7 @@ class QgsGenericFeatureSelectionManager;

#include "ui_qgsfeatureselectiondlg.h"

class QgsFeatureSelectionDlg : public QDialog, private Ui::QgsFeatureSelectionDlg
class GUI_EXPORT QgsFeatureSelectionDlg : public QDialog, private Ui::QgsFeatureSelectionDlg
{
Q_OBJECT

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

class QgsVectorLayer;

class QgsRelationAddDlg : public QDialog, private Ui::QgsRelationAddDlgBase
class GUI_EXPORT QgsRelationAddDlg : public QDialog, private Ui::QgsRelationAddDlgBase
{
Q_OBJECT

Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsrelationeditor.h
Expand Up @@ -28,7 +28,7 @@ class QgsGenericFeatureSelectionManager;
class QgsVectorLayer;
class QgsVectorLayerTools;

class QgsRelationEditorWidget : public QgsCollapsibleGroupBox, private Ui::QgsRelationEditorWidgetBase
class GUI_EXPORT QgsRelationEditorWidget : public QgsCollapsibleGroupBox, private Ui::QgsRelationEditorWidgetBase
{
Q_OBJECT

Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsslider.h
Expand Up @@ -3,7 +3,7 @@
#include <QSize>
#include <QSlider>

class QgsSlider : public QSlider
class GUI_EXPORT QgsSlider : public QSlider
{
Q_OBJECT
public:
Expand Down

0 comments on commit 9873782

Please sign in to comment.