call the right parent class methods

svn path=/trunk/KDE/kdelibs/; revision=881295
This commit is contained in:
Aaron J. Seigo 2008-11-07 18:03:16 +00:00
parent d45d4e1997
commit 89f4735cc9

View File

@ -124,7 +124,7 @@ NativeTabBar::~NativeTabBar()
QRect NativeTabBar::tabRect(int index) const QRect NativeTabBar::tabRect(int index) const
{ {
QRect rect = QTabBar::tabRect(index).translated(d->left, d->top); QRect rect = KTabBar::tabRect(index).translated(d->left, d->top);
if (isVertical()) { if (isVertical()) {
rect.setWidth(rect.width() - d->right - d->left); rect.setWidth(rect.width() - d->right - d->left);
@ -140,7 +140,7 @@ int NativeTabBar::lastIndex() const
QSize NativeTabBar::tabSizeHint(int index) const QSize NativeTabBar::tabSizeHint(int index) const
{ {
//return QTabBar::tabSizeHint(index); //return KTabBar::tabSizeHint(index);
QSize hint = tabSize(index); QSize hint = tabSize(index);
int minwidth = 0; int minwidth = 0;
int minheight = 0; int minheight = 0;
@ -212,7 +212,7 @@ QSize NativeTabBar::sizeHint() const
void NativeTabBar::paintEvent(QPaintEvent *event) void NativeTabBar::paintEvent(QPaintEvent *event)
{ {
if (!styleSheet().isNull()) { if (!styleSheet().isNull()) {
QTabBar::paintEvent(event); KTabBar::paintEvent(event);
return; return;
} }
@ -309,7 +309,7 @@ void NativeTabBar::paintEvent(QPaintEvent *event)
void NativeTabBar::resizeEvent(QResizeEvent *event) void NativeTabBar::resizeEvent(QResizeEvent *event)
{ {
QTabBar::resizeEvent(event); KTabBar::resizeEvent(event);
d->currentAnimRect = tabRect(currentIndex()); d->currentAnimRect = tabRect(currentIndex());
d->backgroundSvg->resizeFrame(size()); d->backgroundSvg->resizeFrame(size());
@ -318,19 +318,19 @@ void NativeTabBar::resizeEvent(QResizeEvent *event)
void NativeTabBar::tabInserted(int index) void NativeTabBar::tabInserted(int index)
{ {
QTabBar::tabInserted(index); KTabBar::tabInserted(index);
emit sizeHintChanged(); emit sizeHintChanged();
} }
void NativeTabBar::tabRemoved(int index) void NativeTabBar::tabRemoved(int index)
{ {
QTabBar::tabRemoved(index); KTabBar::tabRemoved(index);
emit sizeHintChanged(); emit sizeHintChanged();
} }
void NativeTabBar::tabLayoutChange() void NativeTabBar::tabLayoutChange()
{ {
QTabBar::tabLayoutChange(); KTabBar::tabLayoutChange();
if (shape() != d->shape) { if (shape() != d->shape) {
d->shape = shape(); d->shape = shape();