applets Z orders can be negative too

svn path=/trunk/KDE/kdelibs/; revision=915762
This commit is contained in:
Marco Martin 2009-01-23 18:07:20 +00:00
parent 02d5bb8025
commit b743c9fa35
2 changed files with 4 additions and 4 deletions

View File

@ -2153,8 +2153,8 @@ void AppletPrivate::resetConfigurationObject()
} }
uint AppletPrivate::s_maxAppletId = 0; uint AppletPrivate::s_maxAppletId = 0;
uint AppletPrivate::s_maxZValue = 0; int AppletPrivate::s_maxZValue = 0;
uint AppletPrivate::s_minZValue = 0; int AppletPrivate::s_minZValue = 0;
PackageStructure::Ptr AppletPrivate::packageStructure(0); PackageStructure::Ptr AppletPrivate::packageStructure(0);
AppletOverlayWidget::AppletOverlayWidget(QGraphicsWidget *parent) AppletOverlayWidget::AppletOverlayWidget(QGraphicsWidget *parent)

View File

@ -84,8 +84,8 @@ public:
QString configWindowTitle() const; QString configWindowTitle() const;
static uint s_maxAppletId; static uint s_maxAppletId;
static uint s_maxZValue; static int s_maxZValue;
static uint s_minZValue; static int s_minZValue;
static PackageStructure::Ptr packageStructure; static PackageStructure::Ptr packageStructure;
//TODO: examine the usage of memory here; there's a pretty large //TODO: examine the usage of memory here; there's a pretty large