author | mickeyl <mickeyl> | 2006-05-25 22:06:51 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2006-05-25 22:06:51 (UTC) |
commit | 96113f0d780a93836f13f85b2d980bc3b34ff34f (patch) (side-by-side diff) | |
tree | 83baa50c183958a232450a0bbef3cd6799aa6192 /noncore | |
parent | 5e2d061e5396213efe57c8ad7751bb7e8812dccd (diff) | |
download | opie-96113f0d780a93836f13f85b2d980bc3b34ff34f.zip opie-96113f0d780a93836f13f85b2d980bc3b34ff34f.tar.gz opie-96113f0d780a93836f13f85b2d980bc3b34ff34f.tar.bz2 |
g++ 4.1 fix
-rw-r--r-- | noncore/decorations/polished/polished.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/decorations/polished/polished.h b/noncore/decorations/polished/polished.h index d661427..67cbe28 100644 --- a/noncore/decorations/polished/polished.h +++ b/noncore/decorations/polished/polished.h @@ -11,37 +11,37 @@ ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. ** ** See http://www.trolltech.com/gpl/ for GPL licensing information. ** ** Contact info@trolltech.com if any conditions of this licensing are ** not clear to you. ** **********************************************************************/ #ifndef POLISHED_H #define POLISHED_H #include <qtopia/windowdecorationinterface.h> class PolishedDecoration : public WindowDecorationInterface { public: PolishedDecoration(); virtual ~PolishedDecoration(); virtual int metric( Metric m, const WindowData * ) const; virtual void drawArea( Area a, QPainter *, const WindowData * ) const; virtual void drawButton( Button b, QPainter *, const WindowData *, int x, int y, int w, int h, QWSButton::State ) const; virtual QRegion mask( const WindowData * ) const; virtual QString name() const; virtual QPixmap icon() const; QRESULT queryInterface( const QUuid&, QUnknownInterface** ); Q_REFCOUNT protected: - void PolishedDecoration::drawBlend( QPainter *, const QRect &r, const QColor &c1, const QColor&c2 ) const; + void drawBlend( QPainter *, const QRect &r, const QColor &c1, const QColor&c2 ) const; }; #endif |