mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-05-01 22:55:41 +08:00
refs #356 Fixed GCC error and warning.
This commit is contained in:
committed by
Roland Winklmeier
parent
ab98009996
commit
67730aa727
@@ -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)
|
||||||
|
|||||||
@@ -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)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user