replace calls to MyClass::myMethod by this->myMethod
svn path=/trunk/KDE/kdebase/workspace/; revision=1128994
This commit is contained in:
parent
71595cb8c6
commit
15c614b6c9
2 changed files with 2 additions and 2 deletions
|
@ -196,7 +196,7 @@ namespace Oxygen
|
|||
painter.setClipRect(this->rect().intersected( event->rect() ) );
|
||||
painter.setRenderHints(QPainter::Antialiasing);
|
||||
|
||||
QPalette palette = Button::palette();
|
||||
QPalette palette = this->palette();
|
||||
if( isActive() ) palette.setCurrentColorGroup(QPalette::Active);
|
||||
else palette.setCurrentColorGroup(QPalette::Inactive);
|
||||
QColor color = palette.window().color();
|
||||
|
|
|
@ -321,7 +321,7 @@ namespace Oxygen
|
|||
void ClientGroupItemDataList::updateBoundingRects( bool alsoUpdate )
|
||||
{
|
||||
|
||||
qreal ratio( ClientGroupItemDataList::progress() );
|
||||
qreal ratio( progress() );
|
||||
for( iterator iter = begin(); iter != end(); ++iter )
|
||||
{
|
||||
|
||||
|
|
Loading…
Reference in a new issue