refs #341 Remove m_callbackWrapper from CFs9Client

Is already implemented in base class.
This commit is contained in:
Roland Winklmeier
2014-10-30 17:02:53 +01:00
parent 0e675b97e6
commit 6fdd934cd1
2 changed files with 1 additions and 6 deletions

View File

@@ -26,8 +26,7 @@ namespace BlackSimPlugin
{
CFs9Client::CFs9Client(const QString &callsign, const CTime &updateInterval, QObject *parent) :
CDirectPlayPeer(callsign, parent),
m_updateInterval(updateInterval),
m_callbackWrapper(this, &CFs9Client::directPlayMessageHandler)
m_updateInterval(updateInterval)
{
}

View File

@@ -97,10 +97,6 @@ namespace BlackSimPlugin
QMutex m_mutexInterpolator;
IDirectPlay8Address *m_hostAddress = nullptr;
ClientStatus m_clientStatus = Disconnected;
typedef CallbackWrapper<CFs9Client, HRESULT, DWORD, void *> TCallbackWrapper;
TCallbackWrapper m_callbackWrapper;
};
}
}