remove some references to deleted classes

This commit is contained in:
Marco Martin 2013-02-12 20:17:16 +01:00
parent de4fa09a6d
commit 339cf7e846
6 changed files with 0 additions and 26 deletions

View File

@ -753,13 +753,10 @@ class PLASMA_EXPORT Applet : public QObject
friend class Containment; friend class Containment;
friend class ContainmentPrivate; friend class ContainmentPrivate;
friend class AppletScript; friend class AppletScript;
friend class AppletHandle;
friend class AppletPrivate; friend class AppletPrivate;
friend class AccessAppletJobPrivate; friend class AccessAppletJobPrivate;
friend class GraphicsViewAppletPrivate; friend class GraphicsViewAppletPrivate;
friend class PluginLoader; friend class PluginLoader;
friend class PopupApplet;
friend class PopupAppletPrivate;
friend class AssociatedApplicationManager; friend class AssociatedApplicationManager;
}; };

View File

@ -614,8 +614,6 @@ Containment *CoronaPrivate::addContainment(const QString &name, const QVariantLi
if (loadingNull) { if (loadingNull) {
containment->setDrawWallpaper(false); containment->setDrawWallpaper(false);
} else {
containment->setLaunchErrorMessage(false);
} }
// we want to provide something and don't care about the failure to launch // we want to provide something and don't care about the failure to launch

View File

@ -1 +0,0 @@
#include "../../plasma/wallpaper.h"

View File

@ -1 +0,0 @@
#include "../../plasma/scripting/wallpaperscript.h"

View File

@ -158,11 +158,6 @@ Q_SIGNALS:
*/ */
void saveState(KConfigGroup &group) const; void saveState(KConfigGroup &group) const;
/**
* @see PopupApplet
*/
void popupEvent(bool popped) const;
public Q_SLOTS: public Q_SLOTS:
/** /**
@ -211,7 +206,6 @@ protected:
private: private:
friend class Applet; friend class Applet;
friend class PopupApplet;
AppletScriptPrivate *const d; AppletScriptPrivate *const d;
}; };

View File

@ -40,8 +40,6 @@ class AppletScript;
class DataEngine; class DataEngine;
class DataEngineScript; class DataEngineScript;
class RunnerScript; class RunnerScript;
class Wallpaper;
class WallpaperScript;
class ScriptEnginePrivate; class ScriptEnginePrivate;
/** /**
@ -119,17 +117,6 @@ PLASMA_EXPORT DataEngineScript *loadScriptEngine(const QString &language, DataEn
**/ **/
PLASMA_EXPORT RunnerScript *loadScriptEngine(const QString &language, AbstractRunner *runner); PLASMA_EXPORT RunnerScript *loadScriptEngine(const QString &language, AbstractRunner *runner);
/**
* Loads an Wallpaper script engine for the given language.
*
* @param language the language to load for
* @param runner the Plasma::Wallpaper for this script
* @return pointer to the RunnerScript or 0 on failure; the caller is responsible
* for the return object which will be parented to the Wallpaper
**/
PLASMA_EXPORT WallpaperScript *loadScriptEngine(const QString &language, Wallpaper *wallpaper);
} // namespace Plasma } // namespace Plasma
#endif #endif