refactor: Remove unused signal

This commit is contained in:
Lars Toenning
2024-01-26 23:03:29 +01:00
parent 7e6f3f0f0d
commit 2f93a3abe2
2 changed files with 0 additions and 4 deletions

View File

@@ -151,7 +151,6 @@ namespace BlackCore
m_setupReader.reset(new CSetupReader(this));
connect(m_setupReader.data(), &CSetupReader::setupHandlingCompleted, this, &CApplication::onSetupHandlingCompleted, Qt::QueuedConnection);
connect(m_setupReader.data(), &CSetupReader::setupHandlingCompleted, this, &CApplication::setupHandlingCompleted, Qt::QueuedConnection); // hand thru
connect(m_setupReader.data(), &CSetupReader::successfullyReadSharedUrl, m_networkWatchDog, &CNetworkWatchdog::setWorkingSharedUrl, Qt::QueuedConnection);
this->addParserOptions(m_setupReader->getCmdLineOptions()); // add options from reader

View File

@@ -105,9 +105,6 @@ namespace BlackCore
//! Setup fetched or failed (from web, cache, or local file)?
void setupHandlingCompleted(bool available);
//! A shared URL was successfully read
void successfullyReadSharedUrl(const BlackMisc::Network::CUrl &sharedUrl);
//! Message about the loading status
void setupLoadingMessages(const BlackMisc::CStatusMessageList &messages);