From a61f55a4fc707de527aead8eadf8fd3a74560e21 Mon Sep 17 00:00:00 2001 From: Klaus Basan Date: Thu, 28 Sep 2017 00:07:18 +0200 Subject: [PATCH] Ref T165, "private slots" -> "private" in distribution info component --- .../components/distributioninfocomponent.h | 39 +++++++++---------- 1 file changed, 19 insertions(+), 20 deletions(-) diff --git a/src/blackgui/components/distributioninfocomponent.h b/src/blackgui/components/distributioninfocomponent.h index 020d7f054..b078683fb 100644 --- a/src/blackgui/components/distributioninfocomponent.h +++ b/src/blackgui/components/distributioninfocomponent.h @@ -56,34 +56,33 @@ namespace BlackGui //! New platfrom or channel void selectionChanged(); - private slots: - //! Load latest version - void ps_requestLoadOfSetup(); - - //! Loaded latest version - void ps_loadedDistributionInfo(bool success); - - //! Channel has been changed - void ps_channelChanged(); - - //! Platform changed - void ps_platformChanged(); - - //! Cache values have been changed - void ps_changedDistributionCache(); - - //! Install XSwiftBus dialog - void ps_installXSwiftBusDialog(); - private: QScopedPointer ui; QScopedPointer m_installXSwiftBusDialog; //!< dialog, install XSwiftXBus QString m_newVersionAvailable; //!< new version number if any BlackMisc::Db::CDistribution m_currentDistribution; //!< current distribution - BlackMisc::CDataReadOnly m_distributionsInfo { this, &CDistributionInfoComponent::ps_changedDistributionCache }; //!< version cache + BlackMisc::CDataReadOnly m_distributionsInfo { this, &CDistributionInfoComponent::changedDistributionCache }; //!< version cache BlackMisc::CSetting m_distributionSetting { this }; //!< channel/platform selected BlackMisc::CDigestSignal m_dsDistributionAvailable { this, &CDistributionInfoComponent::triggerInfoAvailableSignal, 10000, 2 }; + //! Load latest version + void requestLoadOfSetup(); + + //! Loaded latest version + void loadedDistributionInfo(bool success); + + //! Channel has been changed + void channelChanged(); + + //! Platform changed + void platformChanged(); + + //! Cache values have been changed + void changedDistributionCache(); + + //! Install XSwiftBus dialog + void installXSwiftBusDialog(); + //! Save the current settings void saveSettings();