--compiler_warning;

svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=828631
This commit is contained in:
Aaron J. Seigo 2008-07-06 09:45:31 +00:00
parent 4ac3957747
commit e675d65da3

View File

@ -35,11 +35,11 @@ class ViewPrivate
{ {
public: public:
ViewPrivate(View *view, int uniqueId) ViewPrivate(View *view, int uniqueId)
: drawWallpaper(true), : q(view),
containment(0),
drawWallpaper(true),
trackChanges(true), trackChanges(true),
desktop(-1), desktop(-1),
containment(0),
q(view),
viewId(0) viewId(0)
{ {
if (uniqueId > s_maxViewId) { if (uniqueId > s_maxViewId) {
@ -86,12 +86,12 @@ public:
q->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff); q->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
} }
Plasma::View *q;
Plasma::Containment *containment;
bool drawWallpaper; bool drawWallpaper;
bool trackChanges; bool trackChanges;
int desktop; int desktop;
int viewId; int viewId;
Plasma::Containment *containment;
Plasma::View *q;
static int s_maxViewId; static int s_maxViewId;
}; };