Prefix ps_ for some private slots

https://dev.vatsim-germany.org/boards/22/topics/1914?r=1920#message-1920
This commit is contained in:
Klaus Basan
2014-07-08 13:49:03 +02:00
parent c1a4cc6ff6
commit 161aec96a7
13 changed files with 55 additions and 55 deletions

View File

@@ -20,7 +20,7 @@ namespace BlackCore
m_serviceUrls(urls), m_currentUrlIndex(0), m_networkManager(nullptr)
{
this->m_networkManager = new QNetworkAccessManager(this);
this->connect(this->m_networkManager, &QNetworkAccessManager::finished, this, &CVatsimDataFileReader::loadFinished);
this->connect(this->m_networkManager, &QNetworkAccessManager::finished, this, &CVatsimDataFileReader::ps_loadFinished);
this->connect(this->m_updateTimer, &QTimer::timeout, this, &CVatsimDataFileReader::read);
}
@@ -124,7 +124,7 @@ namespace BlackCore
/*
* Data file read from XML
*/
void CVatsimDataFileReader::loadFinished(QNetworkReply *nwReply)
void CVatsimDataFileReader::ps_loadFinished(QNetworkReply *nwReply)
{
this->setPendingNetworkReply(nullptr);
if (!this->isStopped())