get rid of private styleoption

This commit is contained in:
Marco Martin 2012-09-24 22:03:11 +02:00
parent 93bb58a9f3
commit ae4d0787d3
2 changed files with 0 additions and 46 deletions

View File

@ -72,30 +72,6 @@
namespace Plasma
{
Containment::StyleOption::StyleOption()
: QStyleOptionGraphicsItem(),
view(0)
{
version = Version;
type = Type;
}
Containment::StyleOption::StyleOption(const Containment::StyleOption & other)
: QStyleOptionGraphicsItem(other),
view(other.view)
{
version = Version;
type = Type;
}
Containment::StyleOption::StyleOption(const QStyleOptionGraphicsItem &other)
: QStyleOptionGraphicsItem(other),
view(0)
{
version = Version;
type = Type;
}
Containment::Containment(QObject *parent,
const QString &serviceId,
uint containmentId)

View File

@ -24,7 +24,6 @@
#include <QObject>
#include <QWidget>
#include <QStyleOptionGraphicsItem>
#include <kplugininfo.h>
#include <ksharedconfig.h>
@ -73,27 +72,6 @@ class PLASMA_EXPORT Containment : public Applet
Q_OBJECT
public:
class PLASMA_EXPORT StyleOption : public QStyleOptionGraphicsItem
{
public:
explicit StyleOption();
explicit StyleOption(const StyleOption &other);
explicit StyleOption(const QStyleOptionGraphicsItem &other);
enum StyleOptionType {
Type = SO_CustomBase + 1
};
enum StyleOptionVersion {
Version = QStyleOptionGraphicsItem::Version + 1
};
/**
* The View, if any, that this containment is currently
* being rendered into. Note: this may be NULL, so be
* sure to check it before using it!
*/
Plasma::View *view;
};
enum Type {
NoContainmentType = -1, /**< @internal */