config_method_with_cred renamed to config_connection to describe it better

This commit is contained in:
2016-08-24 11:38:58 +02:00
parent 1cb6ca5adb
commit d1c24efcf0
12 changed files with 44 additions and 44 deletions

View File

@@ -142,10 +142,10 @@ public:
///
/// Constructs a configuration dialog
///
/// \param[inout] cfg Providers configuration data
/// \param[inout] cfg Connection configuration
/// \param[in] parent Parent window
///
wxEAPConfigDialog(eap::config_provider_list &cfg, wxWindow* parent) :
wxEAPConfigDialog(eap::config_connection &cfg, wxWindow* parent) :
m_cfg(cfg),
wxEAPConfigDialogBase(parent)
{
@@ -207,7 +207,7 @@ protected:
protected:
eap::config_provider_list &m_cfg; ///< EAP providers configuration
eap::config_connection &m_cfg; ///< Connection configuration
};