1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 17:52:10 +02:00

remove CloseButton::hideEvent()

That causes crashes when entering/leaving fullscreen mode when the tabbar has non-closable tabs.
deleteLater() in the hideEvent left a dangling pointer in the corresponding QTabBarPrivate::Tab.
The next re-layout of the tabs caused the crash when querying the size of the deleted closeButton:

[...]
This commit is contained in:
Franz Fellner 2012-10-24 18:24:39 +02:00
parent e8745590ac
commit d08ec28d70
2 changed files with 0 additions and 10 deletions

View File

@ -647,15 +647,6 @@ void CloseButton::leaveEvent(QEvent* event)
QAbstractButton::leaveEvent(event);
}
void CloseButton::hideEvent(QHideEvent* event)
{
QAbstractButton::hideEvent(event);
if (!isVisible()) {
deleteLater();
}
}
void CloseButton::paintEvent(QPaintEvent*)
{
QPainter p(this);

View File

@ -128,7 +128,6 @@ public:
void enterEvent(QEvent* event);
void leaveEvent(QEvent* event);
void hideEvent(QHideEvent* event);
void paintEvent(QPaintEvent* event);
};