replace calls to MyClass::myMethod by this->myMethod

svn path=/trunk/KDE/kdebase/workspace/; revision=1128994
This commit is contained in:
Hugo Pereira Da Costa 2010-05-20 22:00:13 +00:00
parent 71595cb8c6
commit 15c614b6c9
2 changed files with 2 additions and 2 deletions

View file

@ -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();

View file

@ -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 )
{