summaryrefslogtreecommitdiffstats
path: root/src/widgets/kernel/qlayoutitem.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/widgets/kernel/qlayoutitem.h')
-rw-r--r--src/widgets/kernel/qlayoutitem.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/widgets/kernel/qlayoutitem.h b/src/widgets/kernel/qlayoutitem.h
index 92bd1afebb..d03f77654b 100644
--- a/src/widgets/kernel/qlayoutitem.h
+++ b/src/widgets/kernel/qlayoutitem.h
@@ -61,7 +61,7 @@ class QSpacerItem;
class QWidget;
class QSize;
-class Q_GUI_EXPORT QLayoutItem
+class Q_WIDGETS_EXPORT QLayoutItem
{
public:
inline explicit QLayoutItem(Qt::Alignment alignment = 0);
@@ -93,7 +93,7 @@ protected:
inline QLayoutItem::QLayoutItem(Qt::Alignment aalignment)
: align(aalignment) { }
-class Q_GUI_EXPORT QSpacerItem : public QLayoutItem
+class Q_WIDGETS_EXPORT QSpacerItem : public QLayoutItem
{
public:
QSpacerItem(int w, int h,
@@ -119,7 +119,7 @@ private:
QRect rect;
};
-class Q_GUI_EXPORT QWidgetItem : public QLayoutItem
+class Q_WIDGETS_EXPORT QWidgetItem : public QLayoutItem
{
Q_DISABLE_COPY(QWidgetItem)
@@ -141,7 +141,7 @@ protected:
QWidget *wid;
};
-class Q_GUI_EXPORT QWidgetItemV2 : public QWidgetItem
+class Q_WIDGETS_EXPORT QWidgetItemV2 : public QWidgetItem
{
public:
explicit QWidgetItemV2(QWidget *widget);