Fix export (needs by dataengine/nowplaying)

svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=832687
This commit is contained in:
Laurent Montel 2008-07-15 06:38:20 +00:00
parent eb1beec1dd
commit 08667afe43
2 changed files with 4 additions and 4 deletions

View File

@ -25,7 +25,7 @@
#include <QtCore/QVariant> #include <QtCore/QVariant>
#include <KDE/KConfigGroup> #include <KDE/KConfigGroup>
#include <plasma/plasma_export.h>
class QIODevice; class QIODevice;
namespace Plasma namespace Plasma
@ -66,7 +66,7 @@ class ServicePrivate;
* connect(job, SIGNAL(finished(KJob*)), this, SLOT(jobCompeted())); * connect(job, SIGNAL(finished(KJob*)), this, SLOT(jobCompeted()));
* @endcode * @endcode
*/ */
class Service : public QObject class PLASMA_EXPORT Service : public QObject
{ {
Q_OBJECT Q_OBJECT
public: public:

View File

@ -21,7 +21,7 @@
#define PLASMA_SERVICEJOB_H #define PLASMA_SERVICEJOB_H
#include <QtCore/QVariant> #include <QtCore/QVariant>
#include <plasma/plasma_export.h>
#include <KDE/KJob> #include <KDE/KJob>
#include <KDE/KService> #include <KDE/KService>
@ -33,7 +33,7 @@ class ServiceJobPrivate;
/** /**
* @brief This class provides jobs for use with Plasma::Service * @brief This class provides jobs for use with Plasma::Service
*/ */
class ServiceJob : public KJob class PLASMA_EXPORT ServiceJob : public KJob
{ {
Q_OBJECT Q_OBJECT