summaryrefslogtreecommitdiffstats
path: root/src/client
diff options
context:
space:
mode:
authorSimon Rettberg2016-10-28 19:31:22 +0200
committerSimon Rettberg2016-10-28 19:31:22 +0200
commit542ef2fddaf7a485e25529e2a2b09c61da69d4e6 (patch)
treefc20843218433cb507227e8a303ac754a691f520 /src/client
parent[client] Fix use-after-free by adding missing signal-slot-connection (diff)
downloadpvs2-542ef2fddaf7a485e25529e2a2b09c61da69d4e6.tar.gz
pvs2-542ef2fddaf7a485e25529e2a2b09c61da69d4e6.tar.xz
pvs2-542ef2fddaf7a485e25529e2a2b09c61da69d4e6.zip
Fix compile warnings
Diffstat (limited to 'src/client')
-rw-r--r--src/client/net/serverconnection.cpp1
-rw-r--r--src/client/util/platform/blankscreen.h2
2 files changed, 2 insertions, 1 deletions
diff --git a/src/client/net/serverconnection.cpp b/src/client/net/serverconnection.cpp
index 46f2538..826cf06 100644
--- a/src/client/net/serverconnection.cpp
+++ b/src/client/net/serverconnection.cpp
@@ -44,6 +44,7 @@ ServerConnection::ServerConnection(const QString& host, const quint16 port, cons
ServerConnection::~ServerConnection()
{
+ this->disconnectFromServer();
if (_socket != NULL) {
qCritical("**** SOCKET DELETE IN DESTRUCTOR");
_socket->deleteLater();
diff --git a/src/client/util/platform/blankscreen.h b/src/client/util/platform/blankscreen.h
index 35cf297..24c4969 100644
--- a/src/client/util/platform/blankscreen.h
+++ b/src/client/util/platform/blankscreen.h
@@ -5,7 +5,7 @@
#include <QDialog>
#include <QDebug>
-class BlankScreen_Sysdep;
+struct BlankScreen_Sysdep;
class BlankScreen : public QDialog
{