refs #356 Fixed GCC error and warning.

This commit is contained in:
Mathew Sutcliffe
2015-03-17 00:32:00 +00:00
committed by Roland Winklmeier
parent ab98009996
commit 67730aa727
2 changed files with 2 additions and 2 deletions

View File

@@ -431,7 +431,7 @@ namespace BlackGui
void CTextMessageComponent::onTextMessageSent(const CTextMessage &sentMessage) void CTextMessageComponent::onTextMessageSent(const CTextMessage &sentMessage)
{ {
this->displayTextMessage(CTextMessageList({ sentMessage })); this->displayTextMessage(sentMessage);
} }
bool CTextMessageComponent::handleGlobalCommandLine(const QString &commandLine, const QString &originator) bool CTextMessageComponent::handleGlobalCommandLine(const QString &commandLine, const QString &originator)

View File

@@ -31,7 +31,7 @@ namespace BlackSimPlugin
CFs9Client::CFs9Client( CFs9Client::CFs9Client(
BlackCore::IInterpolator *interpolator, QObject *owner, const QString &callsign, const CTime &updateInterval) : BlackCore::IInterpolator *interpolator, QObject *owner, const QString &callsign, const CTime &updateInterval) :
CDirectPlayPeer(owner, callsign), CDirectPlayPeer(owner, callsign),
m_interpolator(interpolator), m_updateInterval(updateInterval) m_updateInterval(updateInterval), m_interpolator(interpolator)
{ {
} }