indentation

This commit is contained in:
sD 2020-03-06 17:14:49 +01:00
parent 27a101d010
commit 2701fab91f
2 changed files with 7 additions and 7 deletions

View File

@ -134,9 +134,9 @@ void NetworkManager::on_srv_lookup()
for (const QDnsServiceRecord &record : srv_records) for (const QDnsServiceRecord &record : srv_records)
{ {
#ifdef DEBUG_NETWORK #ifdef DEBUG_NETWORK
qDebug() << "Connecting to " << record.target() << ":" << record.port(); qDebug() << "Connecting to " << record.target() << ":" << record.port();
#endif #endif
ms_socket->connectToHost(record.target(), record.port()); ms_socket->connectToHost(record.target(), record.port());
QTime timer; QTime timer;
timer.start(); timer.start();

View File

@ -564,11 +564,11 @@ void AOApplication::server_packet_received(AOPacket *p_packet)
{ {
if (courtroom_constructed) if (courtroom_constructed)
w_courtroom->reset_music_list(); w_courtroom->reset_music_list();
for (int n_element = 0 ; n_element < f_contents.size() ; ++n_element) for (int n_element = 0 ; n_element < f_contents.size() ; ++n_element)
{ {
w_courtroom->append_music(f_contents.at(n_element)); w_courtroom->append_music(f_contents.at(n_element));
} }
w_courtroom->list_music(); w_courtroom->list_music();
} }
else if (header == "BN") else if (header == "BN")
{ {