const the private pointer; fixme an odd bit of code

svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=693533
This commit is contained in:
Aaron J. Seigo 2007-07-28 09:22:20 +00:00
parent 6d0616c2ff
commit cfe59991ba
2 changed files with 3 additions and 1 deletions

View File

@ -39,6 +39,8 @@ bool Label::hasHeightForWidth() const
qreal Label::heightForWidth(qreal w) const
{
Q_UNUSED(w);
//FIXME: this looks a bit odd?
return 0;
}

View File

@ -105,7 +105,7 @@ class PLASMA_EXPORT Label : public Plasma::Widget
private:
class Private;
Private *d;
Private * const d;
};
}