Added I18N for PQs, initial version. Hence resource file and language files. Changed samplesphysicalquantities to check some I18N topics.

This commit is contained in:
Klaus Basan
2013-07-27 20:23:23 +02:00
parent 581638ec7f
commit 40a97c3d82
38 changed files with 523 additions and 72 deletions

View File

@@ -60,7 +60,7 @@ namespace FSD
return m_tcp_socket->state() == QAbstractSocket::ConnectedState;
}
QString CFSDClient::getErrorMessage(QAbstractSocket::SocketError error)
QString CFSDClient::getErrorMessage(QAbstractSocket::SocketError /* error */)
{
return QString("Unknown");
}

View File

@@ -93,7 +93,7 @@ void CMultiPlayer::addPlane(CPlane *plane)
m_multiplayer_planes.insert(plane->callsign(), plane);
}
void CMultiPlayer::removePlane(CPlane *plane)
void CMultiPlayer::removePlane(CPlane * /** plane **/)
{
qint32 id = 0;
m_simulator->removePlane(id);

View File

@@ -81,7 +81,7 @@ namespace BlackCore {
void addPlane(CPlane *plane);
void removePlane(CPlane *plane);
void removePlane(CPlane *);
bool needsToRemoved(CPlane *plane);