summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Markmann <tm@ayena.de>2016-12-09 08:07:40 (GMT)
committerEdwin Mons <edwin.mons@isode.com>2016-12-09 08:43:04 (GMT)
commit52b10e51563939db8a19bb9336e3280f198b771e (patch)
treec5841e71ce5221329204c26b2f9c16ca879c3cba /Swift/QtUI/QtTabbable.h
parent7b34ce22fd646c252791a3eda5005178ab3f19bf (diff)
downloadswift-52b10e51563939db8a19bb9336e3280f198b771e.zip
swift-52b10e51563939db8a19bb9336e3280f198b771e.tar.bz2
Do not emit windowClosing signal in QtTabbable dtor
Instead, handle the QCloseEvent and emit the windowClosing signal there. This is an attempt to fix a crash I am unable to reproduce but which crash stack includes the signal emit in ~QtTabbable. Test-Information: Builds on macOS 10.12.1 with clang master. All unit and integration tests pass. Manual login and close of Swift worked without a crash. Change-Id: I470f3c5362fd0f502c542560854424e87fc0727e
Diffstat (limited to 'Swift/QtUI/QtTabbable.h')
-rw-r--r--Swift/QtUI/QtTabbable.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/Swift/QtUI/QtTabbable.h b/Swift/QtUI/QtTabbable.h
index 4073ab4..5837702 100644
--- a/Swift/QtUI/QtTabbable.h
+++ b/Swift/QtUI/QtTabbable.h
@@ -16,6 +16,7 @@ namespace Swift {
public:
enum AlertType {NoActivity, WaitingActivity, ImpendingActivity};
virtual ~QtTabbable();
+
bool isWidgetSelected();
virtual AlertType getWidgetAlertState() {return NoActivity;}
virtual int getCount() {return 0;}
@@ -24,7 +25,8 @@ namespace Swift {
protected:
QtTabbable();
- bool event(QEvent* event);
+ virtual bool event(QEvent* event);
+ virtual void closeEvent(QCloseEvent* event);
signals:
void titleUpdated();