add private ctor
This commit is contained in:
parent
570d0bdc05
commit
749d8d900c
@ -28,6 +28,15 @@
|
||||
namespace Plasma
|
||||
{
|
||||
|
||||
Types::Types(QObject *parent)
|
||||
: QObject(parent)
|
||||
{
|
||||
}
|
||||
|
||||
Types::~Types()
|
||||
{
|
||||
}
|
||||
|
||||
Types::Direction locationToDirection(Types::Location location)
|
||||
{
|
||||
switch (location) {
|
||||
|
@ -39,6 +39,7 @@ class PLASMA_EXPORT Types : public QObject
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
~Types();
|
||||
/**
|
||||
* The Constraint enumeration lists the various constraints that Plasma
|
||||
* objects have managed for them and which they may wish to react to,
|
||||
@ -276,6 +277,8 @@ enum BackgroundHints {
|
||||
};
|
||||
Q_ENUMS(BackgroundHints)
|
||||
|
||||
private:
|
||||
Types(QObject *parent = 0);
|
||||
};
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user