summaryrefslogtreecommitdiff
authormickeyl <mickeyl>2006-05-25 22:06:51 (UTC)
committer mickeyl <mickeyl>2006-05-25 22:06:51 (UTC)
commit96113f0d780a93836f13f85b2d980bc3b34ff34f (patch) (side-by-side diff)
tree83baa50c183958a232450a0bbef3cd6799aa6192
parent5e2d061e5396213efe57c8ad7751bb7e8812dccd (diff)
downloadopie-96113f0d780a93836f13f85b2d980bc3b34ff34f.zip
opie-96113f0d780a93836f13f85b2d980bc3b34ff34f.tar.gz
opie-96113f0d780a93836f13f85b2d980bc3b34ff34f.tar.bz2
g++ 4.1 fix
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/decorations/polished/polished.h2
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
@@ -1,47 +1,47 @@
/**********************************************************************
** Copyright (C) 2000-2002 Trolltech AS. All rights reserved.
**
** This file is part of the Qtopia Environment.
**
** This file may be distributed and/or modified under the terms of the
** GNU General Public License version 2 as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL included in the
** packaging of this file.
**
** 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