config_providers renamed to config_provider_list to avoid confusion with config_provider

This commit is contained in:
2016-08-06 07:06:48 +02:00
parent 2aa4bce8cc
commit ac606b7a2e
6 changed files with 28 additions and 28 deletions

View File

@@ -109,7 +109,7 @@ public:
/// \param[inout] cfg Providers configuration data
/// \param[in] parent Parent window
///
wxEAPConfigDialog(eap::config_providers &cfg, wxWindow* parent) :
wxEAPConfigDialog(eap::config_provider_list &cfg, wxWindow* parent) :
m_cfg(cfg),
wxEAPConfigDialogBase(parent)
{
@@ -152,7 +152,7 @@ protected:
protected:
eap::config_providers &m_cfg; ///< EAP providers configuration
eap::config_provider_list &m_cfg; ///< EAP providers configuration
};