if m_attr.GetValue() returns a CString then:
why does the below code work without error message ... only warning message 'C4927'?
std::string sigCncDialog::GetSignalAttributeValue()
{return m_attr.GetValue();}
the correct would be of course:
std::string sigCncDialog::GetSignalAttributeValue()
{return m_attr.GetValue().GetString();}