diff options
Diffstat (limited to 'style/qtc_kstyle.cpp')
-rw-r--r-- | style/qtc_kstyle.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/style/qtc_kstyle.cpp b/style/qtc_kstyle.cpp index 88de679..675d65b 100644 --- a/style/qtc_kstyle.cpp +++ b/style/qtc_kstyle.cpp @@ -210,7 +210,7 @@ void TQtCKStyle::drawKStylePrimitive( KStylePrimitive kpe, else pix.resize( w-2, h-2 ); - TQString title = wid->tqparentWidget()->caption(); + TQString title = wid->parentWidget()->caption(); TQPainter p2; p2.begin(&pix); p2.fillRect(pix.rect(), cg.brush(TQColorGroup::Highlight)); @@ -396,7 +396,7 @@ void TQtCKStyle::drawPrimitive( PrimitiveElement pe, if (p && p->device()->devType() == TQInternal::Widget) { widget = static_cast<TQWidget*>(p->device()); - tqparent = widget->tqparentWidget(); + tqparent = widget->parentWidget(); } else return; // Don't paint on non-widgets @@ -763,7 +763,7 @@ int TQtCKStyle::tqpixelMetric(PixelMetric m, const TQWidget* widget) const TQWidget* tqparent = 0; // Check that we are not a normal toolbar or a hidden dockwidget, // in which case we need to adjust the height for font size - if (widget && (tqparent = widget->tqparentWidget() ) + if (widget && (tqparent = widget->parentWidget() ) && !tqparent->inherits(TQTOOLBAR_OBJECT_NAME_STRING) && !tqparent->inherits(TQMAINWINDOW_OBJECT_NAME_STRING) && widget->inherits(TQDOCKWINDOWHANDLE_OBJECT_NAME_STRING) ) @@ -977,10 +977,10 @@ void TQtCKStyle::tqdrawComplexControl( ComplexControl control, TQPainter p2; p2.begin(&pix); - if ( slider->tqparentWidget() && - slider->tqparentWidget()->backgroundPixmap() && - !slider->tqparentWidget()->backgroundPixmap()->isNull() ) { - TQPixmap pixmap = *(slider->tqparentWidget()->backgroundPixmap()); + if ( slider->parentWidget() && + slider->parentWidget()->backgroundPixmap() && + !slider->parentWidget()->backgroundPixmap()->isNull() ) { + TQPixmap pixmap = *(slider->parentWidget()->backgroundPixmap()); p2.drawTiledPixmap(r, pixmap, slider->pos()); } else pix.fill(cg.background()); |