diff --git a/widgets/checkbox.h b/widgets/checkbox.h index 7357fdbc8..aef56e87b 100644 --- a/widgets/checkbox.h +++ b/widgets/checkbox.h @@ -22,7 +22,7 @@ #include #include -#include +#include #include //TODO @@ -34,7 +34,7 @@ namespace Plasma /** * Class that emulates a QCheckBox inside plasma */ -class KDE_EXPORT CheckBox : public QObject, public QGraphicsItem +class PLASMA_EXPORT CheckBox : public QObject, public QGraphicsItem { Q_OBJECT public: diff --git a/widgets/layout.h b/widgets/layout.h index 9ab632d55..3c140b7e2 100644 --- a/widgets/layout.h +++ b/widgets/layout.h @@ -22,7 +22,7 @@ #include #include -#include +#include #include "layoutitem.h" @@ -34,7 +34,7 @@ namespace Plasma */ class Widget; -class KDE_EXPORT Layout : public LayoutItem +class PLASMA_EXPORT Layout : public LayoutItem { public: Layout(LayoutItem *parent); diff --git a/widgets/layoutitem.h b/widgets/layoutitem.h index b30ffb53b..f66ca7275 100644 --- a/widgets/layoutitem.h +++ b/widgets/layoutitem.h @@ -22,7 +22,7 @@ #include #include -#include +#include namespace Plasma { @@ -32,7 +32,7 @@ class Layout; /** * Base class for Plasma layout-managed items */ -class KDE_EXPORT LayoutItem +class PLASMA_EXPORT LayoutItem { public: LayoutItem(); diff --git a/widgets/lineedit.h b/widgets/lineedit.h index 629da4592..373025c9d 100644 --- a/widgets/lineedit.h +++ b/widgets/lineedit.h @@ -22,7 +22,7 @@ #include #include -#include +#include #include #include @@ -33,7 +33,7 @@ namespace Plasma /** * Class that emulates a QLineEdit inside plasma */ -class KDE_EXPORT LineEdit : public QGraphicsTextItem, public LayoutItem +class PLASMA_EXPORT LineEdit : public QGraphicsTextItem, public LayoutItem { Q_OBJECT diff --git a/widgets/radiobutton.h b/widgets/radiobutton.h index caf90c15c..358f4e404 100644 --- a/widgets/radiobutton.h +++ b/widgets/radiobutton.h @@ -24,7 +24,7 @@ #include // KDE includes -#include +#include #include @@ -47,7 +47,7 @@ namespace Plasma */ -class KDE_EXPORT RadioButton : public QObject, public QGraphicsItem +class PLASMA_EXPORT RadioButton : public QObject, public QGraphicsItem { Q_OBJECT diff --git a/widgets/vboxlayout.h b/widgets/vboxlayout.h index bcd80ffe9..8c91f8ae0 100644 --- a/widgets/vboxlayout.h +++ b/widgets/vboxlayout.h @@ -22,7 +22,7 @@ #include #include -#include +#include #include "layout.h" @@ -34,7 +34,7 @@ class Widget; /** * Vertical Box Layout */ -class KDE_EXPORT VBoxLayout : public Layout +class PLASMA_EXPORT VBoxLayout : public Layout { public: VBoxLayout(LayoutItem *parent = 0); diff --git a/widgets/widget.h b/widgets/widget.h index af692cd4a..7efd05730 100644 --- a/widgets/widget.h +++ b/widgets/widget.h @@ -25,7 +25,7 @@ #include #include -#include +#include #include "layoutitem.h" @@ -37,7 +37,7 @@ class Layout; /** * Class that emulates a QWidget inside plasma */ -class KDE_EXPORT Widget : public QGraphicsItem, public LayoutItem +class PLASMA_EXPORT Widget : public QGraphicsItem, public LayoutItem { public: Widget(Widget *parent = 0);