1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-05 16:42:26 +02:00

Rename isQtCurve to interceptPolish where it makes sense.

It's more correct in case we ever need it for styles other than QtCurve.
This commit is contained in:
Teo Mrnjavac 2012-08-06 21:41:07 +02:00
parent 9ea9898b59
commit d89ebffc05
2 changed files with 5 additions and 5 deletions

View File

@ -30,15 +30,15 @@
#define ARROW_HEIGHT 7
ProxyStyle::ProxyStyle( bool isQtCurve )
: m_isQtCurve( isQtCurve )
ProxyStyle::ProxyStyle( bool interceptPolish )
: m_interceptPolish( interceptPolish )
{
}
void
ProxyStyle::polish( QPalette& pal )
{
if( !m_isQtCurve )
if( !m_interceptPolish )
QProxyStyle::polish( pal );
}

View File

@ -27,7 +27,7 @@
class DLLEXPORT ProxyStyle : public QProxyStyle
{
public:
ProxyStyle( bool isQtCurve = false );
ProxyStyle( bool interceptPolish = false );
virtual void polish( QApplication *a ) { QProxyStyle::polish( a ); }
virtual void polish( QPalette& pal );
@ -38,7 +38,7 @@ public:
virtual QSize sizeFromContents( ContentsType type, const QStyleOption *option, const QSize &size, const QWidget *widget ) const;
private:
bool m_isQtCurve;
bool m_interceptPolish;
};
#endif // PROXYSTYLE_H