From 154fbd7986e2adcd9f043dbcdc671f52e8b4181b Mon Sep 17 00:00:00 2001 From: Mark Liversedge Date: Tue, 27 Nov 2012 18:53:11 +0000 Subject: [PATCH] Fix SEGV on GcBubble --- src/GcBubble.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GcBubble.cpp b/src/GcBubble.cpp index 376b513d3..08a4050ab 100644 --- a/src/GcBubble.cpp +++ b/src/GcBubble.cpp @@ -32,7 +32,7 @@ static const int spikeMargin = 40; #include "Settings.h" #include "Units.h" -GcBubble::GcBubble(MainWindow *parent) : QWidget(parent, Qt::FramelessWindowHint), borderWidth(3), mainWindow(mainWindow), parent(parent), orientation(Qt::Horizontal) +GcBubble::GcBubble(MainWindow *parent) : QWidget(parent, Qt::FramelessWindowHint), borderWidth(3), mainWindow(parent), parent(parent), orientation(Qt::Horizontal) { setAttribute(Qt::WA_DeleteOnClose); setAttribute(Qt::WA_TranslucentBackground);